laravel 修改了数据库迁移文件,怎么操作才能提交到数据库


Schema::create('vilays', function (Blueprint $table) {
$table->increments('id');
$table->string('name',36)->change();
$table->tinyInteger('user_id')->unsigned();
$table->timestamp('utime');
$table->timestamps();
});

执行php artisan migrate 提示nothing to migrate

php laravel-5

初音ミク  8 years, 10 months ago

php artisan migrate:rollback ,然后修改文件 ***_create_vilays_table.php ,再 php artisan migrate

天空D花都 answered 8 years, 10 months ago

Your Answer