如何在 Laravel 中修改迁移?
我正在尝试修改现有迁移。这是我当前的迁移类:
class CreateLogForUserTable extends Migration
{
public function up()
{
Schema::create('log_for_user', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id');
$table->string('table_name');
$table->string('error_message');
$table->unsignedTinyInteger('error_code');
$table->timestamps();
});
}
public function down()
{
Schema::drop('log_for_user');
}
}
我已经执行了一次命令。现在我需要将方法添加到列中。所以我编辑了我的迁移,如下所示:php artisan migrate
->nullable()
error_message
.
.
$table->string('error_message')->nullable();
.
.
但是当我再次执行时,它说:php artisan migrate
无需迁移。
如何应用迁移的新版本?