mirror of
https://github.com/Traceworks2023/nxtgauge-backend-rust.git
synced 2026-06-11 22:15:25 +00:00
6 lines
204 B
PL/PgSQL
6 lines
204 B
PL/PgSQL
-- Rollback for ai_conversations
|
|
BEGIN;
|
|
DROP INDEX IF EXISTS idx_ai_conversations_user_pillar;
|
|
DROP INDEX IF EXISTS idx_ai_conversations_user_id_created_at;
|
|
DROP TABLE IF EXISTS ai_conversations;
|
|
COMMIT;
|