59 lines
1.5 KiB
PHP
59 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace Engelsystem\Migrations;
|
|
|
|
use Illuminate\Database\Schema\Blueprint;
|
|
use Illuminate\Database\Schema\ColumnDefinition;
|
|
use Illuminate\Support\Str;
|
|
|
|
trait Reference
|
|
{
|
|
/**
|
|
* @param Blueprint $table
|
|
* @param bool $setPrimary
|
|
*/
|
|
protected function referencesUser(Blueprint $table, bool $setPrimary = false)
|
|
{
|
|
$this->references($table, 'users', null, $setPrimary);
|
|
}
|
|
|
|
/**
|
|
* @param Blueprint $table
|
|
* @param string $targetTable
|
|
* @param string|null $fromColumn
|
|
* @param bool $setPrimary
|
|
*
|
|
* @return ColumnDefinition
|
|
*/
|
|
protected function references(
|
|
Blueprint $table,
|
|
string $targetTable,
|
|
?string $fromColumn = null,
|
|
bool $setPrimary = false
|
|
): ColumnDefinition {
|
|
$fromColumn = $fromColumn ?? Str::singular($targetTable) . '_id';
|
|
$col = $table->unsignedInteger($fromColumn);
|
|
|
|
if ($setPrimary) {
|
|
$table->primary($fromColumn);
|
|
}
|
|
|
|
$this->addReference($table, $fromColumn, $targetTable);
|
|
|
|
return $col;
|
|
}
|
|
|
|
/**
|
|
* @param Blueprint $table
|
|
* @param string $fromColumn
|
|
* @param string $targetTable
|
|
*/
|
|
protected function addReference(Blueprint $table, string $fromColumn, string $targetTable)
|
|
{
|
|
$table->foreign($fromColumn)
|
|
->references('id')->on($targetTable)
|
|
->onUpdate('cascade')
|
|
->onDelete('cascade');
|
|
}
|
|
}
|