0

Laravel migrate 更新修改存在的字段属性&名称 migration 写法

neo created at6 years ago view count: 2518

修改属性

Schema::table('users', function (Blueprint $table) {
    $table->string('name', 50)->change();
});

修改字段名称

Schema::table('users', function (Blueprint $table) {
    $table->renameColumn('from', 'to');
});
report
回复