]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0257.schema.query-bind-var-label.sql
LP2042879 Shelving Location Groups Admin accessibility
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0257.schema.query-bind-var-label.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0257'); -- Scott McKellar
4
5 -- In the unlikely event that this table already has rows in it, it will
6 -- be necessary to add the column as nullable, populate it in the existing
7 -- rows, and then add the NOT NULL constraint.
8
9 ALTER TABLE query.bind_variable
10         ADD COLUMN label TEXT NOT NULL;
11
12 COMMIT;