Bug 8612: [Follow-up] Make usage and type different columns in table
[srvgit] / installer / data / mysql / atomicupdate / bug_8612.sql
1 ALTER TABLE export_format ADD used_for varchar(255) DEFAULT 'export_records' AFTER type;
2
3 UPDATE export_format SET used_for = 'late_issues' WHERE type = 'sql';
4 UPDATE export_format SET used_for = 'export_records' WHERE type = 'marc';