projects
/
working
/
Evergreen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Revert "LP#1332651 do not strip internal spaces in barcode"
[working/Evergreen.git]
/
Open-ILS
/
src
/
sql
/
Pg
/
upgrade
/
0229.schema.acq-inv-item-fund.sql
1
BEGIN;
2
3
INSERT INTO config.upgrade_log (version) VALUES ('0229'); -- Scott McKellar
4
5
ALTER TABLE acq.invoice_item
6
ADD COLUMN FUND INT
7
REFERENCES acq.fund (id)
8
DEFERRABLE INITIALLY DEFERRED;
9
10
COMMIT;