优化 sql 脚本,排除无关填充流程
Some checks failed
Docker / build (push) Has been cancelled

This commit is contained in:
2025-12-20 15:48:23 +08:00
parent 7bdbb7ddff
commit eac793becb
3 changed files with 13 additions and 14 deletions

View File

@@ -1059,16 +1059,3 @@ alter table coupon
add constraint fk_coupon_user_id foreign key (user_id) references "user" (id) on delete cascade;
-- endregion
-- ====================
-- region 填充数据
-- ====================
insert into client (
client_id, client_secret, redirect_uri, spec, name, type
)
values (
'web', '$2a$10$Ss12mXQgpYyo1CKIZ3URouDm.Lc2KcYJzsvEK2PTIXlv6fHQht45a', '', 3, 'web', 1
);
-- endregion