修改字段
Schema::table('users', function (Blueprint $table) {
$table->string('name', 100)->change();
});Schema::table('contacts', function (Blueprint $table) {
$table->string('deleted_at')->nullable()->change();
});Schema::table('contacts', function (Blueprint $table) {
$table->renameColumn('promoted', 'is_promoted');
});Schema::table('contacts', function (Blueprint $table) {
$table->dropColumn('votes');
});Last updated