Completed
Push — master ( 9b9e7a...58d84b )
by Pavel
02:36
created
app/database/migrations/20170128112159_create_access_tokens_table.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.
app/database/migrations/20170129140408_create_refresh_tokens_table.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,8 +8,7 @@
 block discarded – undo
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();
Please login to merge, or discard this patch.