瀏覽代碼

alter upload_files title

Andrew 2 月之前
父節點
當前提交
8fe818bdae
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      database/migrations/2025_11_26_072601_alter_upload_files_table.php

+ 1
- 1
database/migrations/2025_11_26_072601_alter_upload_files_table.php 查看文件

@@ -12,7 +12,7 @@ return new class extends Migration
12 12
     public function up(): void
13 13
     {
14 14
         Schema::table('upload_files', function (Blueprint $table) {
15
-            $table->json('title')->nullable()->comment('標題');
15
+            $table->json('title')->nullable()->comment('標題')->change();
16 16
         });
17 17
     }
18 18