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
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
php artisan migrate:rollback,然后修改文件***_create_vilays_table.php,再php artisan migrate创建新的修改或者更新迁移,For Example: