Files
fiberops-api-admin/packages/admin-db/prisma/migrations/20260415080000_seed_superadmin/migration.sql
2026-04-15 16:13:23 +08:00

15 lines
405 B
SQL

-- Seed the platform superadmin user
-- Password: SuperAdmin@123 (bcrypt hash)
INSERT INTO "super_admins" ("id", "email", "password", "firstName", "lastName", "isActive", "createdAt", "updatedAt")
VALUES (
gen_random_uuid(),
'superadmin@fiberops.dev',
'$2b$12$wiW.foGm.5MD6FNz/HmBvuPaXJS56YPxxq5OEVCO6UXLOxTMvxL8S',
'Super',
'Admin',
true,
NOW(),
NOW()
)
ON CONFLICT ("email") DO NOTHING;