]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0382.schema.asset_copy_location_callnums.sql
Stamping upgrade for relaxing rank_ou sorting
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0382.schema.asset_copy_location_callnums.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0382'); -- dbs
4
5 -- Start picking up call number label prefixes and suffixes
6 -- from asset.copy_location
7 ALTER TABLE asset.copy_location ADD COLUMN label_prefix TEXT;
8 ALTER TABLE asset.copy_location ADD COLUMN label_suffix TEXT;
9
10 COMMIT;