소스 검색

albums table

Andrew 7 달 전
부모
커밋
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
     public function up()
9
     public function up()
10
     {
10
     {
11
         Schema::table('albums', function (Blueprint $table) {
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