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

38 lines
811 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
class AddForeignKeysToAbPaymentItemTable extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('ab_payment_item', function(Blueprint $table)
{
$table->foreign('invoice_id', 'fk_pi_inv')->references('id')->on('ab_invoice')->onUpdate('NO ACTION')->onDelete('NO ACTION');
$table->foreign('payment_id', 'fk_pi_pay')->references('id')->on('ab_payment')->onUpdate('NO ACTION')->onDelete('NO ACTION');
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('ab_payment_item', function(Blueprint $table)
{
$table->dropForeign('fk_pi_inv');
$table->dropForeign('fk_pi_pay');
});
}
}