Skip to content

Commit

Permalink
Update 2016_08_11_191827_create_push_subscriptions_table.php
Browse files Browse the repository at this point in the history
  • Loading branch information
cretueusebiu committed Aug 27, 2018
1 parent 2ec83be commit 7cfcbb1
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -16,7 +16,7 @@ public function up()
Schema::create('push_subscriptions', function (Blueprint $table) {
$table->increments('id');
$table->integer('user_id')->unsigned()->index();
$table->string('endpoint')->unique();
$table->string('endpoint', 500)->unique();
$table->string('public_key')->nullable();
$table->string('auth_token')->nullable();
$table->timestamps();
Expand Down

0 comments on commit 7cfcbb1

Please sign in to comment.