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
     public function up(): void
12
     public function up(): void
13
     {
13
     {
14
         Schema::table('upload_files', function (Blueprint $table) {
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