]> _ Git - psq.git/commitdiff
migration
authorLouis Jeckel <louis.jeckel@outlook.cm>
Mon, 13 Apr 2020 17:48:22 +0000 (19:48 +0200)
committerLouis Jeckel <louis.jeckel@outlook.cm>
Mon, 13 Apr 2020 17:48:22 +0000 (19:48 +0200)
app/Http/Controllers/StatisticsController.php
database/migrations/2020_04_06_185243_add_slug_to_collections_table.php

index a5f59dda958094635906adee3affb7d48b4a6460..8a9a25cd6488536d8a5dc0356cbf019a92129b8e 100644 (file)
@@ -26,6 +26,6 @@ class StatisticsController extends Controller
 
     public function batchStatistics(EmailBatch $batch, Mailgun $mailgun)
     {
-        
+
     }
 }
index 98f8b31bc84cf899433774fed537c9a28afb04d9..809aa1343f630a0a52461963d06872ace0db104a 100644 (file)
@@ -15,7 +15,6 @@ class AddSlugToCollectionsTable extends Migration
     {
         Schema::table('collections', function (Blueprint $table) {
             $table->string('slug');
-            $table->dropColumn('tags');
         });
     }