gpt4 book ai didi

laravel - 如何让 Laravel Migration 中的 ID 自动递增从某个数字开始

转载 作者:行者123 更新时间:2023-12-05 00:46:31 27 4
gpt4 key购买 nike

我想写一个 Laravel 迁移自增 ID 作为主键。我想用另一个值而不是 1 开始这个 ID。我该怎么做?

迁移up()函数:

public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('name');
$table->string('email')->unique();
$table->string('phone');
$table->rememberToken();
$table->timestamps();
});
}

最佳答案

从 Laravel 8.x 开始,您现在可以在迁移中使用它:

public function up()
{
Schema::create('posts', function (Blueprint $table) {
$table->id()->startingValue(1200);
});
}

来源:https://laravel-news.com/laravel-auto-increment

关于laravel - 如何让 Laravel Migration 中的 ID 自动递增从某个数字开始,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60041436/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com