Completed
Push — master ( 9fa9ff...52caec )
by Şəhriyar
20:38 queued 15:34
created
database/migrations/2015_05_13_125906_create_users_oauth_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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');
Please login to merge, or discard this patch.