]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0401.schema.authority_record_entry_drop_arn.sql
LP#1155329: better enforce cat.bib.use_id_for_tcn
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0401.schema.authority_record_entry_drop_arn.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0401'); -- dbs
4
5 DROP INDEX authority.authority_record_unique_tcn;
6 ALTER TABLE authority.record_entry DROP COLUMN arn_value;
7 ALTER TABLE authority.record_entry DROP COLUMN arn_source;
8
9 COMMIT;