Passed
Push — master ( f2e075...26cce7 )
by meta
03:06
created
database/migrations/2018_02_19_152839_alter_users_table_for_azure_ad.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -18,12 +18,12 @@
 block discarded – undo
18 18
             $table->string('password')->nullable()->change();
19 19
             // We need a new string field to store the oauth provider unique id in
20 20
             $table->string('azure_id', 36)
21
-                  ->nullable()
22
-                  ->after('email');
21
+                    ->nullable()
22
+                    ->after('email');
23 23
             // We need a new string field to store the user principal name in
24 24
             $table->string('userPrincipalName')
25
-                  ->nullable()
26
-                  ->after('azure_id');
25
+                    ->nullable()
26
+                    ->after('azure_id');
27 27
         });
28 28
         // We dont support password resets because social identity is external
29 29
         Schema::dropIfExists('password_resets');
Please login to merge, or discard this patch.