mirror of
https://github.com/coder/coder.git
synced 2025-07-03 16:13:58 +00:00
10 lines
328 B
SQL
10 lines
328 B
SQL
ALTER TABLE notification_templates
|
|
DROP COLUMN IF EXISTS method,
|
|
DROP COLUMN IF EXISTS kind;
|
|
|
|
DROP TABLE IF EXISTS notification_preferences;
|
|
DROP TYPE IF EXISTS notification_template_kind;
|
|
|
|
DROP TRIGGER IF EXISTS inhibit_enqueue_if_disabled ON notification_messages;
|
|
DROP FUNCTION IF EXISTS inhibit_enqueue_if_disabled;
|