# モデルも同時に作成
php artisan make:model [単数のモデル名] --migration
# テーブルを削除
php artisan make:migration drop_[テーブル名]
# 中身は作成時の真逆をコーディングする。
# カラムにdefault値を追記
php artisan make:migration add_default_value_to_enable_in_[テーブル名]_table --table=[テーブル名]
# モデルも同時に作成
php artisan make:model [単数のモデル名] --migration
# テーブルを削除
php artisan make:migration drop_[テーブル名]
# 中身は作成時の真逆をコーディングする。
# カラムにdefault値を追記
php artisan make:migration add_default_value_to_enable_in_[テーブル名]_table --table=[テーブル名]