dyjh 6 tahun lalu
induk
melakukan
86e013909a

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

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