Passed
Push — main ( 51da02...cc341e )
by Usama
03:58
created
migrations/2025_01_01_000001_add_comment_banned_until_to_users_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,14 +8,14 @@
 block discarded – undo
8 8
 {
9 9
     public function up()
10 10
     {
11
-        Schema::table('users', function (Blueprint $table) {
11
+        Schema::table('users', function(Blueprint $table) {
12 12
             $table->timestamp('comment_banned_until')->nullable()->after('remember_token');
13 13
         });
14 14
     }
15 15
 
16 16
     public function down()
17 17
     {
18
-        Schema::table('users', function (Blueprint $table) {
18
+        Schema::table('users', function(Blueprint $table) {
19 19
             $table->dropColumn('comment_banned_until');
20 20
         });
21 21
     }
Please login to merge, or discard this patch.