Andrew 2 ヶ月 前
コミット
c5cc49781c
共有1 個のファイルを変更した1 個の追加1 個の削除を含む
  1. 1
    1
      database/migrations/2025_11_29_063956_add_columns_from_albums_table.php

+ 1
- 1
database/migrations/2025_11_29_063956_add_columns_from_albums_table.php ファイルの表示

@@ -9,7 +9,7 @@ return new class extends Migration
9 9
     public function up()
10 10
     {
11 11
         Schema::table('albums', function (Blueprint $table) {
12
-            $table->string('news_img_pc')->comment('列表圖 PC');
12
+            $table->string('news_banner')->comment('列表圖 PC');
13 13
         });
14 14
     }
15 15