今すでにテーブル「hoges」を作成し終わっていて
その中のカラムの位置を変更したいと思っているのですが
なかなか反映されずご教示いただけますと幸いでございます。
現在以下のようなテーブル順序になっていて、
service_idがupdated_atの後にあるのを
created_atの前(Bの後)にしたいです。
migrationで以下を実行したのですが
反映されませんでした。
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class ChangeColumnOrderInHogeTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('hoges', function (Blueprint $table) { $table->integer('service_id')->after('B')->change(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('hoges', function (Blueprint $table) { $table->integer('service_id')->after('updated_at')->change(); }); } }
新規のカラムだったら
$table->integer('service_id')->after('B');
この記述で反映されるので、
今回既存なのでchange()を付けてみたのですが
それでも反映されませんでした。
宜しくお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/09/30 16:24