我使用name
列nullable
创建了一个迁移。如何更改name
而不是nullable
?我之前的迁移代码如下:
Schema::table('users', function($table)
{
$table->string('name', 50)->nullable();
});
答案 0 :(得分:1)
使用此:
Schema::table('users', function (Blueprint $table) {
$table->string('name', 50)->nullable(false)->change();
});