]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0249.data.id_as_tcn_global_flag.sql
LP#1744385: Additions and edits to release note entry
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0249.data.id_as_tcn_global_flag.sql
1 BEGIN;
2
3 INSERT INTO config.upgrade_log (version) VALUES ('0249');
4
5 INSERT INTO config.global_flag (name, label) -- defaults to enabled=FALSE
6     VALUES (
7         'cat.bib.use_id_for_tcn',
8         oils_i18n_gettext(
9             'cat.bib.use_id_for_tcn',
10             'Cat: Use Internal ID for TCN Value',
11             'cgf', 
12             'label'
13         )
14     );
15
16 COMMIT;