summaryrefslogtreecommitdiffhomepage
path: root/internal/db/migrations/000001_initial.down.sql
blob: 4f2712d869e0e736ea084bee8f41ee3ca6f676f0 (plain)
1
2
3
4
5
6
7
8
DROP TRIGGER IF EXISTS update_sessions_updated_at;
DROP TRIGGER IF EXISTS update_messages_updated_at;

DROP TRIGGER IF EXISTS update_session_message_count_on_delete;
DROP TRIGGER IF EXISTS update_session_message_count_on_insert;

DROP TABLE IF EXISTS sessions;
DROP TABLE IF EXISTS messages;