7 lines
204 B
MySQL
7 lines
204 B
MySQL
|
|
-- 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;
|