Files
crater/database/migrations/2021_12_04_122255_create_transactions_table.php
Mohit Panjwani bdea879273 v6 update
2022-01-10 16:06:17 +05:30

41 lines
1.1 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class CreateTransactionsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('transactions', function (Blueprint $table) {
$table->id();
$table->string('transaction_id')->nullable();
$table->string('unique_hash')->nullable();
$table->string('type')->nullable();
$table->string('status');
$table->dateTime('transaction_date');
$table->integer('company_id')->unsigned()->nullable();
$table->foreign('company_id')->references('id')->on('companies');
$table->unsignedInteger('invoice_id');
$table->foreign('invoice_id')->references('id')->on('invoices');
$table->timestamps();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('transactions');
}
}