mirror of
https://gitee.com/ctexthuang/hyperf_rbac_framework_server_ctexthuang.git
synced 2025-12-25 19:27:48 +08:00
18 lines
468 B
PHP
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;
|
|
});
|
|
}
|
|
} |