Skip to content

Commit f92ad49

Browse files
committed
Use big increments
1 parent b3b3a69 commit f92ad49

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

migrations/create_push_subscriptions_table.php.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ class CreatePushSubscriptionsTable extends Migration
1414
public function up()
1515
{
1616
Schema::connection(config('webpush.database_connection'))->create(config('webpush.table_name'), function (Blueprint $table) {
17-
$table->increments('id');
17+
$table->bigIncrements('id');
1818
$table->morphs('subscribable');
1919
$table->string('endpoint', 500)->unique();
2020
$table->string('public_key')->nullable();

0 commit comments

Comments
 (0)