@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | */ |
13 | 13 | public function up() |
14 | 14 | { |
15 | - Schema::create('users_oauth', function (Blueprint $table) { |
|
15 | + Schema::create('users_oauth', function(Blueprint $table) { |
|
16 | 16 | $table->increments('id'); |
17 | 17 | $table->unsignedInteger('user_id'); |
18 | 18 | $table->string('remote_provider', 32); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | */ |
35 | 35 | public function down() |
36 | 36 | { |
37 | - Schema::table('users_oauth', function (Blueprint $table) { |
|
37 | + Schema::table('users_oauth', function(Blueprint $table) { |
|
38 | 38 | $table->dropForeign('users_oauth_user_id_foreign'); |
39 | 39 | }); |
40 | 40 | Schema::drop('users_oauth'); |