Float签名浮动签名 - Laravel Mysql

时间:2018-05-21 08:04:38

标签: mysql database laravel migration

有没有办法将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();

但那些对我不起作用

1 个答案:

答案 0 :(得分:1)

使用此:

$table->float('job_profit', 8, 2)->unsigned(false)->nullable()->change();

唯一的缺点是它用默认精度替换8,2