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();
});
执行phpartisanmigrate提示nothingtomigrate
杨魅力
浏览 447回答 2
2回答

德玛西亚99

phpartisanmigrate:rollback,然后修改文件***_create_vilays_table.php,再phpartisanmigrate
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript