|
@@ -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();
|
|
|
|
|
+ });
|
|
|
|
|
+ }
|
|
|
|
|
+};
|