Skip to content

Commit

Permalink
Merge pull request #20 from ankurk91/patch/db
Browse files Browse the repository at this point in the history
Use bigIncrements for primary key
  • Loading branch information
freekmurze authored Sep 2, 2019
2 parents 71380c4 + b4bc55f commit 8cff350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_webhook_calls_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 8cff350

Please sign in to comment.