Bladeren bron

attachment

dyjh 6 jaren geleden
bovenliggende
commit
86e013909a
1 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 2 2
      database/migrations/2019_04_15_104944_add_store_id_to_base_attachment.php

+ 2 - 2
database/migrations/2019_04_15_104944_add_store_id_to_base_attachment.php

xqd xqd
@@ -13,7 +13,7 @@ class AddStoreIdToBaseAttachment extends Migration
      */
     public function up()
     {
-        Schema::table('base_attachment', function (Blueprint $table) {
+        Schema::table('base_attachments', function (Blueprint $table) {
             //
             $table->unsignedInteger('store_id')->nullable()->default(0);
         });
@@ -26,7 +26,7 @@ class AddStoreIdToBaseAttachment extends Migration
      */
     public function down()
     {
-        Schema::table('base_attachment', function (Blueprint $table) {
+        Schema::table('base_attachments', function (Blueprint $table) {
             //
         });
     }