wiki.techinc.nl/maintenance/postgres/archives/patch-drop-ar_text.sql

9 lines
257 B
MySQL
Raw Normal View History

-- 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;