我创建了一个迁移插件。我的version.yaml是
1.0.1: First version of user
1.0.2:
- Added new fields to User model
- alter_table_users_add_contact_fields.php
我的更新目录包含一个迁移文件alter_table_users_add_contact_fields.php
。
<?php
namespace Mnv\Reminder\Updates;
use Schema;
use October\Rain\Database\Updates\Migration;
class CreateTableNewsRead extends Migration
{
protected $table = 'mnv_news_read';
public function up()
{
Schema::create($this->table, function($table)
{
$table->engine = 'InnoDB';
$table->increments('id');
$table->integer('news_id');
$table->foreign('news_id')->references('id')->on('rainlab_blog_posts')->onUpdate('cascade')->onDelete('cascade');
$table->integer('user_id');
$table->foreign('user_id')->references('id')->on('users')->onUpdate('cascade')->onDelete('cascade');
$table->timestamp('read_at');
$table->index([
'news_id',
'user_id',
]);
$table->index([
'user_id',
'news_id',
]);
});
}
public function down()
{
Schema::dropIfExists($this->table);
}
}
我已使用控制台命令php artisan october:up
成功运行此迁移。
但现在我要回滚此迁移。我看到表migrations
中没有关于此迁移的信息。所以我不能回滚这个migration usins命令php artisan migrate:rollback
。
我发现有关插件版本的信息包含在表system_plugin_versions
中。我已手动删除了我的表mnv_news_read
,并手动删除了system_plugin_versions
和system_plugin_history
表中的对应记录。
drop table mnv_news_read;
delete from system_plugin_history where code = 'Mnv.Reminder';
delete from system_plugin_versions where code = 'Mnv.Reminder';
之后我尝试再次运行php artisan october:up
。它成功完成了。
我的问题是如何正确回滚插件的迁移?
答案 0 :(得分:2)
回滚迁移的一种方法是通过管理控制面板中的builder plugin(如果您还没有,请确保先安装此插件)。
Versions
Rollback version
按钮答案 1 :(得分:0)
根据documentation,您可以在控制台中运行命令:
php artisan plugin:rollback AuthorName.PluginName 1.2.3