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.
2 parents 7edd2a0 + b2b524d commit cb285b7Copy full SHA for cb285b7
migrations/create_push_subscriptions_table.php.stub
@@ -16,7 +16,7 @@ class CreatePushSubscriptionsTable extends Migration
16
Schema::create('push_subscriptions', function (Blueprint $table) {
17
$table->increments('id');
18
$table->integer('user_id')->unsigned()->index();
19
- $table->string('endpoint')->unique();
+ $table->string('endpoint', 500)->unique();
20
$table->string('public_key')->nullable();
21
$table->string('auth_token')->nullable();
22
$table->timestamps();
0 commit comments