osb/database/migrations/2017_06_18_104533_add_foreign_keys_to_ab_rtm_table.php

38 lines
784 B
PHP
Raw Normal View History

2018-06-18 11:18:34 +00:00
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddForeignKeysToAbRtmTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('ab_rtm', function(Blueprint $table)
{
$table->foreign('account_id', 'fk_rtm_acc')->references('id')->on('ab_account')->onUpdate('NO ACTION')->onDelete('NO ACTION');
$table->foreign('parent_id', 'fk_rtm_rtm')->references('id')->on('ab_rtm')->onUpdate('NO ACTION')->onDelete('NO ACTION');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('ab_rtm', function(Blueprint $table)
{
$table->dropForeign('fk_rtm_acc');
$table->dropForeign('fk_rtm_rtm');
});
}
}