新しい移行を作成し、composer du
に登録する必要があります コマンドを実行してphp artisan migrate
を実行します 列のタイプを変更するコマンド:
Schema::table('the_table_name', function (Blueprint $table) {
$table->string('hotel', 255)->change();
});
新しい移行を作成し、composer du
に登録する必要があります コマンドを実行してphp artisan migrate
を実行します 列のタイプを変更するコマンド:
Schema::table('the_table_name', function (Blueprint $table) {
$table->string('hotel', 255)->change();
});