create migrate payments

This commit is contained in:
Muhammad Fajar
2022-11-08 11:05:49 +07:00
parent 16dd3ab1df
commit 20944e4992
2 changed files with 85 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('payments', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('invoice_id')->nullable()->index();
$table->unsignedBigInteger('payment_method_id')->nullable()->index();
$table->string('transaction_id')->nullable()->index();
$table->string('invoice_number')->nullable()->index();
$table->string('invoiced_total_net')->nullable();
$table->string('amount')->nullable();
$table->string('admin_fee')->nullable();
$table->string('method')->nullable();
$table->string('status')->nullable();
$table->string('note')->nullable();
$table->string('payment_gateway_ref_id')->nullable()->index();
$table->text('payment_gateway_request_data')->nullable();
$table->timestamps();
$table->softDeletes();
$table->unsignedBigInteger('created_by')->nullable()->index();
$table->unsignedBigInteger('updated_by')->nullable()->index();
$table->unsignedBigInteger('deleted_by')->nullable()->index();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('payments');
}
};

View File

@@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('payment_methods', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('config_pmc_id')->nullable()->index();
$table->string('code')->nullable();
$table->string('name')->nullable();
$table->string('image')->nullable();
$table->integer('timeout')->nullable();
$table->boolean('active')->default(true);
$table->timestamps();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('payment_methods');
}
};