Files
coder/coderd/database/migrations/000245_notifications_dedupe.down.sql
2024-08-21 11:18:03 +02:00

4 lines
239 B
SQL

DROP TRIGGER IF EXISTS update_notification_message_dedupe_hash ON notification_messages;
DROP FUNCTION IF EXISTS compute_notification_message_dedupe_hash();
ALTER TABLE IF EXISTS notification_messages
DROP COLUMN IF EXISTS dedupe_hash;