dyjh 6 سال پیش
والد
کامیت
86e013909a
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  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) {
             //
         });
     }