Ver Fonte

custom_fields

peterguo há 2 semanas atrás
pai
commit
7e230cd4e1

+ 28 - 0
database/migrations/tenant/2025_03_17_113521_add_custom_fields_to_task_container_file_table.php

@@ -0,0 +1,28 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+    /**
+     * Run the migrations.
+     */
+    public function up(): void
+    {
+        Schema::table('task_container_file', function (Blueprint $table) {
+            //
+        });
+    }
+
+    /**
+     * Reverse the migrations.
+     */
+    public function down(): void
+    {
+        Schema::table('task_container_file', function (Blueprint $table) {
+            //
+        });
+    }
+};