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
初音ミク
9 years, 4 months ago