You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
643 B
28 lines
643 B
<?php
|
|
|
|
namespace Database\Seeders;
|
|
|
|
use App\Models\AdminUser;
|
|
use Illuminate\Database\Seeder;
|
|
|
|
/**
|
|
* 初始化后台管理员(密码经模型 password_hash 的 hashed 自动加密)。
|
|
*
|
|
* 默认账号仅供本地/首轮联调,上线前请修改或停用。
|
|
*/
|
|
class AdminUserSeeder extends Seeder
|
|
{
|
|
public function run(): void
|
|
{
|
|
AdminUser::query()->updateOrCreate(
|
|
['username' => 'admin'],
|
|
[
|
|
'name' => '系统管理员',
|
|
'status' => 'active',
|
|
'password_hash' => 'Admin123456',
|
|
'mobile' => null,
|
|
],
|
|
);
|
|
}
|
|
}
|