]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0779.schema.acq.distribution_formula.expansion.sql
148677e4a5ace9fa66152bd5ba9be75b5e44b2b3
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0779.schema.acq.distribution_formula.expansion.sql
1 BEGIN;
2
3 SELECT evergreen.upgrade_deps_block_check('0779', :eg_version);
4
5 ALTER TABLE acq.distribution_formula_entry
6     ADD COLUMN fund INT REFERENCES acq.fund (id),
7     ADD COLUMN circ_modifier TEXT REFERENCES config.circ_modifier (code),
8     ADD COLUMN collection_code TEXT ;
9
10 COMMIT;