我是Laravel的新手,我的表迁移工作良好
public function up()
{
Schema::create('tenants', function (Blueprint $table) {
$table->integer('tenant_id')->autoIncrement();
$table->string('name', 45);
$table->integer('plan_id')->nullable();
$table->integer('status')->nullable();
});
}
public function down()
{
Schema::dropIfExists('tenants');
}
如果我运行php artian migrate:fresh,自动增量最大值不会设置回1。
我知道如何在SQL中实现,但我想使用Laravel选项。
非常感谢。
1条答案
按热度按时间smdnsysy1#