Migration: Moved reference method to trait
parent
720b46f60f
commit
951828a4f1
@ -0,0 +1,36 @@
|
||||
<?php
|
||||
|
||||
namespace Engelsystem\Migrations;
|
||||
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
|
||||
trait Reference
|
||||
{
|
||||
/**
|
||||
* @param Blueprint $table
|
||||
* @param bool $setPrimary
|
||||
*/
|
||||
protected function referencesUser(Blueprint $table, $setPrimary = true)
|
||||
{
|
||||
$this->references($table, 'users', 'user_id', $setPrimary);
|
||||
}
|
||||
|
||||
/**
|
||||
* @param Blueprint $table
|
||||
* @param string $targetTable
|
||||
* @param string $fromColumn
|
||||
* @param bool $setPrimary
|
||||
*/
|
||||
protected function references(Blueprint $table, $targetTable, $fromColumn, $setPrimary = false)
|
||||
{
|
||||
$table->unsignedInteger($fromColumn);
|
||||
|
||||
if ($setPrimary) {
|
||||
$table->primary($fromColumn);
|
||||
}
|
||||
|
||||
$table->foreign($fromColumn)
|
||||
->references('id')->on($targetTable)
|
||||
->onDelete('cascade');
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue