Passed
Push — master ( 085877...b93bbd )
by Cesar
03:26
created
databases/migrations/2024_12_25_000000_add_indexes_to_magic_links_table.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
      */
14 14
     public function up()
15 15
     {
16
-        Schema::table('magic_links', function (Blueprint $table) {
16
+        Schema::table('magic_links', function(Blueprint $table) {
17 17
             $table->index('available_at');
18 18
             $table->index('max_visits');
19 19
         });
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
      */
27 27
     public function down()
28 28
     {
29
-        Schema::table('magic_links', function (Blueprint $table) {
29
+        Schema::table('magic_links', function(Blueprint $table) {
30 30
             $table->dropIndex('magic_links_available_at_index');
31 31
             $table->dropIndex('magic_links_max_visits_index');
32 32
         });
Please login to merge, or discard this patch.