Laravel 10.xのartisanの「migrate:reset」コマンドを解説します。
Description
全てのデータベースマイグレーションのロールバック
Usage
php artisan migrate:reset [--database [DATABASE]] [--force] [--path [PATH]] [--realpath] [--pretend]
Options
オプション | 省略形 | 必須 | 説明 |
---|---|---|---|
database | - | - | 使用するデータベース接続 |
force | - | - | 本番時にオペレーションを強制的に実行させる |
path | - | - | 実行されるマイグレーションファイルのパス(複数可 |
realpath | - | - | pathで指定したパスが、絶対パスであることを示す |
pretend | - | - | 実行されるであろうSQLクエリをダンプする |
Example
no options
php artisan migrate:reset
INFO Rolling back migrations.
2019_12_14_000001_create_personal_access_tokens_table ................................................................................... 5ms DONE
2019_08_19_000000_create_failed_jobs_table .............................................................................................. 6ms DONE
2014_10_12_100000_create_password_reset_tokens_table .................................................................................... 5ms DONE
2014_10_12_000000_create_users_table .................................................................................................... 4ms DONE
Source
10.x
framework/src/Illuminate/Database/Console/Migrations/ResetCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
11.x
framework/src/Illuminate/Database/Console/Migrations/ResetCommand.php at 11.x · laravel/framework
The Laravel Framework. Contribute to laravel/framework development by creating an account on GitHub.
コメント