32 lines
721 B
PHP
32 lines
721 B
PHP
|
<?php
|
||
|
|
||
|
use Illuminate\Database\Migrations\Migration;
|
||
|
use Illuminate\Database\Schema\Blueprint;
|
||
|
|
||
|
return new class extends Migration
|
||
|
{
|
||
|
/**
|
||
|
* Run the migrations.
|
||
|
*/
|
||
|
public function up(): void
|
||
|
{
|
||
|
Schema::create('invoice_payment', function (Blueprint $table) {
|
||
|
$table->id();
|
||
|
|
||
|
$table->foreignId('invoice_id')->constrained()->cascadeOnDelete();
|
||
|
$table->foreignId('payment_id')->constrained()->cascadeOnDelete();
|
||
|
$table->decimal('applied_amount', 8, 2);
|
||
|
|
||
|
$table->timestamps();
|
||
|
});
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Reverse the migrations.
|
||
|
*/
|
||
|
public function down(): void
|
||
|
{
|
||
|
Schema::dropIfExists('invoice_payment');
|
||
|
}
|
||
|
};
|