012_telegram_bot_fields.down.sql 722 B

123456789101112131415161718
  1. -- 012_telegram_bot_fields.down.sql
  2. --
  3. -- Reverts 012_telegram_bot_fields. Drops the columns added in W3.
  4. -- The original bot_token plaintext column is preserved; the
  5. -- trigger function is dropped because it was added by W3 and has
  6. -- no other consumers.
  7. DROP TRIGGER IF EXISTS trg_telegram_bots_touch_updated_at ON telegram_bots;
  8. DROP FUNCTION IF EXISTS telegram_bots_touch_updated_at();
  9. DROP INDEX IF EXISTS idx_telegram_bots_default_source;
  10. ALTER TABLE telegram_bots
  11. DROP COLUMN IF EXISTS updated_at,
  12. DROP COLUMN IF EXISTS last_rotated_at,
  13. DROP COLUMN IF EXISTS description,
  14. DROP COLUMN IF EXISTS default_source_id,
  15. DROP COLUMN IF EXISTS welcome_message,
  16. DROP COLUMN IF EXISTS bot_token_hash;