d2d.emegrendeles.hu/app/Database/Blueprint.php
E98Developer 68b7c35bef git init
2026-02-28 06:53:05 +01:00

16 lines
355 B
PHP

<?php
namespace App\Database;
use Illuminate\Database\Schema\Blueprint as BaseBlueprint;
class Blueprint extends BaseBlueprint
{
public function userIdFields()
{
$this->unsignedInteger('created_by')->nullable();
$this->unsignedInteger('updated_by')->nullable();
$this->unsignedInteger('deleted_by')->nullable();
}
}