summaryrefslogtreecommitdiff
path: root/www/wiki/maintenance/postgres/archives/patch-drop-ar_text.sql
blob: bd0a6b815ece835f3c312cf015f2b17c5735ff67 (plain)
1
2
3
4
5
6
7
8
-- T33223: Remove obsolete ar_text and ar_flags columns
-- (and make ar_text_id not nullable and default 0)

ALTER TABLE archive
  DROP COLUMN ar_text,
  DROP COLUMN ar_flags,
  ALTER COLUMN ar_text_id SET DEFAULT 0,
  ALTER COLUMN ar_text_id SET NOT NULL;