@@ -8,8 +8,7 @@ |
||
8 | 8 | */ |
9 | 9 | public function up() |
10 | 10 | { |
11 | - Capsule::schema()->create('access_tokens', function($table) |
|
12 | - { |
|
11 | + Capsule::schema()->create('access_tokens', function($table) { |
|
13 | 12 | $table->increments('id'); |
14 | 13 | $table->integer('user_id')->unsigned()->index(); |
15 | 14 | $table->string('access_token')->unique()->nullable(); |
@@ -8,8 +8,7 @@ |
||
8 | 8 | */ |
9 | 9 | public function up() |
10 | 10 | { |
11 | - Capsule::schema()->create('refresh_tokens', function($table) |
|
12 | - { |
|
11 | + Capsule::schema()->create('refresh_tokens', function($table) { |
|
13 | 12 | $table->increments('id'); |
14 | 13 | $table->integer('user_id')->unsigned()->index(); |
15 | 14 | $table->string('refresh_token')->unique()->nullable(); |