Files
hyperf_rbac_framework_serve…/app/Common/Macros/BlueprintMacros.php
2025-09-12 15:23:08 +08:00

18 lines
468 B
PHP

<?php
namespace App\Common\Macros;
use Hyperf\Database\Schema\Blueprint;
class BlueprintMacros
{
public static function register(): void
{
Blueprint::macro('authorFields', function () {
/** @var Blueprint $this */
$this->unsignedBigInteger('created_by')->nullable()->comment('创建人ID');
$this->unsignedBigInteger('updated_by')->nullable()->comment('更新人ID');
return $this;
});
}
}