这是我目前的代码。
3
如何将默认值更改为0,如下所示?
public function up()
{
Schema::table('render', function (Blueprint $table) {
$table->boolean('displayed')->default(1);
});
}`
答案 0 :(得分:5)
public function up()
{
Schema::table('render', function (Blueprint $table) {
$table->boolean('displayed')->default(0)->change();
});
}
添加了->change()
。请参阅Link