summaryrefslogtreecommitdiff
path: root/www/wiki/maintenance/archives/patch-drop-ar_text.sql
blob: 6dae71e3296ba2c1472b9031d4d085fb346866f8 (plain)
1
2
3
4
5
6
7
-- 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,
  CHANGE COLUMN ar_text_id ar_text_id int unsigned NOT NULL DEFAULT 0;