소스 검색

feat(chart-of-accounts): allow null unit_id for matriz plan accounts

Plano de contas da matriz (franqueador) não pertence a uma unidade.
ebagabee 1 개월 전
부모
커밋
a5761e8e01
1개의 변경된 파일23개의 추가작업 그리고 0개의 파일을 삭제
  1. 23 0
      database/migrations/2026_06_18_000003_make_unit_id_nullable_on_financial_plan_accounts.php

+ 23 - 0
database/migrations/2026_06_18_000003_make_unit_id_nullable_on_financial_plan_accounts.php

@@ -0,0 +1,23 @@
+<?php
+
+use Illuminate\Database\Migrations\Migration;
+use Illuminate\Database\Schema\Blueprint;
+use Illuminate\Support\Facades\Schema;
+
+return new class extends Migration
+{
+    public function up(): void
+    {
+        Schema::table('financial_plan_accounts', function (Blueprint $table) {
+            // Plano de contas da matriz (franqueador) não pertence a uma unidade.
+            $table->foreignId('unit_id')->nullable()->change();
+        });
+    }
+
+    public function down(): void
+    {
+        Schema::table('financial_plan_accounts', function (Blueprint $table) {
+            $table->foreignId('unit_id')->nullable(false)->change();
+        });
+    }
+};