Drop archive.ar_text and ar_flags
[lhc/web/wiklou.git] / maintenance / postgres / archives / patch-drop-ar_text.sql
1 -- T33223: Remove obsolete ar_text and ar_flags columns
2 -- (and make ar_text_id not nullable and default 0)
3
4 ALTER TABLE archive
5 DROP COLUMN ar_text,
6 DROP COLUMN ar_flags,
7 ALTER COLUMN ar_text_id SET DEFAULT 0;
8 ALTER COLUMN ar_text_id SET NOT NULL;