invoiceninja/database/migrations/2016_01_18_195351_add_bank_accounts.php
2017-01-30 21:40:43 +02:00

52 lines
1.4 KiB
PHP

<?php
use Illuminate\Database\Migrations\Migration;
class AddBankAccounts extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('banks', function ($table) {
$table->increments('id');
$table->string('name');
$table->string('remote_id');
$table->integer('bank_library_id')->default(BANK_LIBRARY_OFX);
$table->text('config');
});
Schema::create('bank_accounts', function ($table) {
$table->increments('id');
$table->unsignedInteger('account_id');
$table->unsignedInteger('bank_id');
$table->unsignedInteger('user_id');
$table->string('username');
$table->timestamps();
$table->softDeletes();
$table->foreign('account_id')->references('id')->on('accounts')->onDelete('cascade');
$table->foreign('user_id')->references('id')->on('users')->onDelete('cascade');
$table->foreign('bank_id')->references('id')->on('banks');
$table->unsignedInteger('public_id')->index();
$table->unique(['account_id', 'public_id']);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::drop('bank_accounts');
Schema::drop('banks');
}
}