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 89b9f2f commit b2b524dCopy full SHA for b2b524d
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