Hoan thien core finance v2
This commit is contained in:
@@ -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');
|
||||
});
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user