From b4bc55f6cde01a10921c3080153893d25169d0ae Mon Sep 17 00:00:00 2001 From: Ankur Kumar Date: Sun, 25 Aug 2019 11:20:17 +0530 Subject: [PATCH] Use bigIncrements for primary key --- database/migrations/create_webhook_calls_table.php.stub | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/database/migrations/create_webhook_calls_table.php.stub b/database/migrations/create_webhook_calls_table.php.stub index 22cedba..88b1e14 100644 --- a/database/migrations/create_webhook_calls_table.php.stub +++ b/database/migrations/create_webhook_calls_table.php.stub @@ -8,7 +8,7 @@ class CreateWebhookCallsTable extends Migration public function up() { Schema::create('webhook_calls', function (Blueprint $table) { - $table->increments('id'); + $table->bigIncrements('id'); $table->string('name'); $table->text('payload')->nullable();