]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0228.schema.acq-invoice-item-type-prorate.sql
LP#1638299: Stamping upgrade scripts for authority infrastructure work
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0228.schema.acq-invoice-item-type-prorate.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0228'); -- Scott McKellar
4
5 ALTER TABLE acq.invoice_item_type
6         ADD COLUMN prorate BOOL NOT NULL DEFAULT FALSE;
7
8 COMMIT;