Hoan thien core finance v2

This commit is contained in:
2026-04-25 04:04:14 +00:00
parent 86216ef872
commit 002c9a8b99
39 changed files with 1308 additions and 89 deletions

View File

@@ -0,0 +1,19 @@
<?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('contracts', function (Blueprint $table) {
$table->foreignUuid('payment_template_id')->nullable()->constrained('payment_templates')->nullOnDelete();
});
}
public function down(): void {
Schema::table('contracts', function (Blueprint $table) {
$table->dropConstrainedForeignId('payment_template_id');
});
}
};