mirror of
https://gitlab.com/CIEFWorldwideSdnBhd/exchange-2.0.git
synced 2026-08-19 04:23:55 +00:00
supplier bill payment refund module
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
class CreateBillGroupRefundsTable extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
Schema::create('bill_group_refunds', function (Blueprint $table) {
|
||||
$table->id();
|
||||
$table->foreignId('bill_group_id')->unsigned()->on('bill_groups');
|
||||
$table->foreignId('transaction_id')->unsigned()->on('transactions');
|
||||
});
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
Schema::dropIfExists('bill_group_refunds');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user