``` refactor(db): 移除SQL语句中的public schema前缀

This commit is contained in:
2025-12-30 00:02:59 +08:00
parent a080b4294c
commit a1e07a204b
234 changed files with 3200 additions and 2831 deletions

View File

@@ -1,7 +1,7 @@
ALTER TABLE public.med_medication_request ADD performer_check_id int8 NULL;
COMMENT ON COLUMN public.med_medication_request.performer_check_id IS '校对人';
ALTER TABLE public.med_medication_request ADD check_time timestamptz(6) NULL;
COMMENT ON COLUMN public.med_medication_request.check_time IS '校对时间';
ALTER TABLE med_medication_request ADD performer_check_id int8 NULL;
COMMENT ON COLUMN med_medication_request.performer_check_id IS '校对人';
ALTER TABLE med_medication_request ADD check_time timestamptz(6) NULL;
COMMENT ON COLUMN med_medication_request.check_time IS '校对时间';
-- 向迁移历史表插入记录