在迁移 laravel 5.1 中设置从 1000 开始的自动增量字段
2022-08-30 14:14:09
我需要从用户表中的1000开始我的ids,我如何为此创建迁移。
我目前的迁移是:
public function up()
{
Schema::create('users', function (Blueprint $table) {
$table->increments('id'); // how can I start this from 1000
$table->integer('qualification_id')->nullable();
$table->integer('experience_id')->nullable();
});
}