This commit is contained in:
vipg
2025-11-28 16:40:08 +08:00
parent e97c8e00c5
commit 4a648d53e9
6 changed files with 24 additions and 6 deletions

View File

@@ -105,7 +105,10 @@ END $$;
CREATE INDEX IF NOT EXISTS idx_currency_name_currency_id_deleted ON currency_name(currency_id, deleted);
CREATE INDEX IF NOT EXISTS idx_currency_code_currency_id_deleted ON currency_code(currency_id, deleted);
RAISE NOTICE '5⃣✅ 全部索引已确保存在';
DO $$
BEGIN
RAISE NOTICE '5⃣✅ 全部索引已确保存在';
END $$;
-- 6⃣ 完成 🎉
DO $$