You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
895 B
PHP
38 lines
895 B
PHP
<?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)
|
|
->onUpdate('cascade')
|
|
->onDelete('cascade');
|
|
}
|
|
}
|