有没有办法将unsigned float转换为有符号的float?
我想要的是在数据库中保存负值
当前迁移的一部分看起来像
$table->float('job_profit', 8, 2)->unsigned()->nullable();
尝试了几个如
$table->float('job_profit', 8, 2)->nullable();
和
$table->decimal('job_profit', 8, 2)->nullable()->change();
但那些对我不起作用
答案 0 :(得分:1)
使用此:
$table->float('job_profit', 8, 2)->unsigned(false)->nullable()->change();
唯一的缺点是它用默认精度替换8,2
。