Bläddra i källkod

alter upload_files title

Andrew 2 månader sedan
förälder
incheckning
8fe818bdae
1 ändrade filer med 1 tillägg och 1 borttagningar
  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 Visa fil

@@ -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