浏览代码

attachment fattura migration

FabioFratini 8 月之前
父节点
当前提交
db2d6f0209
共有 1 个文件被更改,包括 34 次插入0 次删除
  1. 34 0
      database/migrations/2025_04_30_000000_add_field_attachment_to_records_table.php

+ 34 - 0
database/migrations/2025_04_30_000000_add_field_attachment_to_records_table.php

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