在 Linux 中回滚 Laravel 迁移,你需要先删除迁移文件,然后运行迁移回滚命令
打开终端。
切换到你的 Laravel 项目目录。例如:
cd /path/to/your/laravel-project
找到你想要回滚的迁移文件。迁移文件通常位于 database/migrations
目录下,文件名格式为 yyyy_mm_dd_xxxxxx_migration_name.php
。
删除你想要回滚的迁移文件。例如,如果你想要回滚名为 2021_06_01_000000_create_users_table.php
的迁移,你可以使用以下命令:
rm database/migrations/2021_06_01_000000_create_users_table.php
php artisan make:migration rollback_create_users_table --table=users
这将在 database/migrations
目录下创建一个新的迁移文件,例如 2021_06_02_000000_rollback_create_users_table.php
。
up()
方法以撤销之前的迁移操作。例如:public function up()
{
Schema::dropIfExists('users');
}
down()
方法以重新创建之前的迁移。例如:public function down()
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->rememberToken();
$table->timestamps();
});
}
php artisan migrate
这将撤销之前的迁移并应用新创建的回滚迁移。
现在,你已经成功回滚了 Laravel 迁移。请注意,这个过程仅适用于已运行过的迁移。如果你需要撤销尚未运行的迁移,只需删除迁移文件并重新运行 php artisan migrate
命令即可。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。