osb/database/migrations/2017_06_18_104533_add_foreign_keys_to_ab_currency_table.php
2018-06-18 21:18:34 +10:00

36 lines
636 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddForeignKeysToAbCurrencyTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('ab_currency', function(Blueprint $table)
{
$table->foreign('country_id', 'fk_cur_cty')->references('id')->on('ab_country')->onUpdate('NO ACTION')->onDelete('NO ACTION');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('ab_currency', function(Blueprint $table)
{
$table->dropForeign('fk_cur_cty');
});
}
}