We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b3a69 commit f92ad49Copy full SHA for f92ad49
migrations/create_push_subscriptions_table.php.stub
@@ -14,7 +14,7 @@ class CreatePushSubscriptionsTable extends Migration
14
public function up()
15
{
16
Schema::connection(config('webpush.database_connection'))->create(config('webpush.table_name'), function (Blueprint $table) {
17
- $table->increments('id');
+ $table->bigIncrements('id');
18
$table->morphs('subscribable');
19
$table->string('endpoint', 500)->unique();
20
$table->string('public_key')->nullable();
0 commit comments