mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
41 lines
1.1 KiB
PHP
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');
|
|
}
|
|
}
|