Completed
Push — develop ( d9944b...f2d14c )
by Jimmy
05:25 queued 02:49
created
database/migrations/2019_09_23_194855_add_click_up_token_to_users_table.php 2 patches
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -17,8 +17,8 @@
 block discarded – undo
17 17
             'users',
18 18
             function (Blueprint $table) {
19 19
                 $table->string('clickup_token', 1024)
20
-                      ->after('password')
21
-                      ->nullable();
20
+                        ->after('password')
21
+                        ->nullable();
22 22
             }
23 23
         );
24 24
     }
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     {
16 16
         Schema::table(
17 17
             'users',
18
-            function (Blueprint $table) {
18
+            function(Blueprint $table) {
19 19
                 $table->string('clickup_token', 1024)
20 20
                       ->after('password')
21 21
                       ->nullable();
@@ -32,7 +32,7 @@  discard block
 block discarded – undo
32 32
     {
33 33
         Schema::table(
34 34
             'users',
35
-            function (Blueprint $table) {
35
+            function(Blueprint $table) {
36 36
                 $table->dropColumn('clickup_token');
37 37
             }
38 38
         );
Please login to merge, or discard this patch.