dyjh il y a 6 ans
Parent
commit
86e013909a

+ 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) {
             //
         });
     }