``` 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,5 +1,5 @@
ALTER TABLE public.tmp_orders_group_package_detail ADD group_id int8 NULL;
COMMENT ON COLUMN public.tmp_orders_group_package_detail.group_id IS '组号';
ALTER TABLE tmp_orders_group_package_detail ADD group_id int8 NULL;
COMMENT ON COLUMN tmp_orders_group_package_detail.group_id IS '组号';
-- 插入为tmp_activity_device表添加列的迁移记录
INSERT INTO __MigrationsHistory (MigrationId, ProductVersion)
VALUES ('202511031415 add_column tmp_orders_group_package_detail', '1.0.0');