Files
platform/scripts/sql/fill.sql
luorijun eac793becb
Some checks failed
Docker / build (push) Has been cancelled
优化 sql 脚本,排除无关填充流程
2025-12-20 18:47:21 +08:00

13 lines
273 B
SQL

-- ====================
-- region 填充数据
-- ====================
insert into client (
client_id, client_secret, redirect_uri, spec, name, type
)
values (
'web', '$2a$10$Ss12mXQgpYyo1CKIZ3URouDm.Lc2KcYJzsvEK2PTIXlv6fHQht45a', '', 3, 'web', 1
);
-- endregion