Я бы хотел, чтобы мой инкрементный идентификатор начал отсчет с 1000. Как это сделать
мой стол с животными
public function up()
{
Schema::create('animals', function (Blueprint $table) {
$table->bigIncrements('id');
$table->unsignedBigInteger('user_id')->index();
$table->unsignedBigInteger('type_id')->index();
$table->string('gender');
$table->string('placeOfBirth');
$table->timestamps();
$table->foreign('user_id')->references('id')->on('users');
$table->foreign('type_id')->references('id')->on('types');
});
}