null許容したカラムが表示されない
解決したいこと
なぜか反映されないテーブルのカラム
発生している問題・エラー
既存のプロジェクトに新しいテーブルを作成し、php artisan migarate
したのですが、カラムが現れません、、
null許容したカラム⇨my_replied_number
以下のテーブルに六つのカラムがあります。
2021_06_23_090903_create_article_comment_bulletion_boards_table.php
Schema::create('article_comment_bulletion_boards', function (Blueprint $table) {
$table->id();
$table->timestamps();
$table->char("handle_name");
$table->text("article_comment");
$table->bigInteger("my_replied_number")->nullable()->change();
$table->foreignId('article_id')->constrained()->onDelite('cascade');
});
上記をphpartisanmigrate
したところ、
Migrating: 2021_06_23_090903_create_article_comment_bulletion_boards_table
Migrated: 2021_06_23_090903_create_article_comment_bulletion_boards_table (63.13ms)
となって特にエラーも吐かれなかったのですが、php myAdminを確認するとフィールドが確認できません
ユーザの挙動によって値をnullにしたり値を入れたりしたい任意のカラムなのですが、なぜ表示されないのでしょうか?
こういう仕様なのでしょうか?
ご教授いただければ幸いです。