Procházet zdrojové kódy

alter upload_files title

Andrew před 2 měsíci
rodič
revize
6ef6dc7b1f

+ 0
- 28
database/migrations/2025_11_26_072601_alter_upload_files_table.php Zobrazit soubor

@@ -1,28 +0,0 @@
1
-<?php
2
-
3
-use Illuminate\Database\Migrations\Migration;
4
-use Illuminate\Database\Schema\Blueprint;
5
-use Illuminate\Support\Facades\Schema;
6
-
7
-return new class extends Migration
8
-{
9
-    /**
10
-     * Run the migrations.
11
-     */
12
-    public function up(): void
13
-    {
14
-        Schema::table('upload_files', function (Blueprint $table) {
15
-            $table->json('title')->nullable()->comment('標題')->change();
16
-        });
17
-    }
18
-
19
-    /**
20
-     * Reverse the migrations.
21
-     */
22
-    public function down(): void
23
-    {
24
-        Schema::table('upload_files', function (Blueprint $table) {
25
-            $table->string('title')->nullable()->comment('標題')->change();
26
-        });
27
-    }
28
-};