]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0853.data.prefer_external_url_OUS.sql
LP1894131 Sticky catalog holdings org select
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0853.data.prefer_external_url_OUS.sql
1 -- Evergreen DB patch XXXX.data.prefer_external_url_OUS.sql
2 --
3 -- FIXME: insert description of change, if needed
4 --
5 BEGIN;
6
7 -- check whether patch can be applied
8 SELECT evergreen.upgrade_deps_block_check('0853', :eg_version);
9
10 INSERT into config.org_unit_setting_type
11 ( name, grp, label, description, datatype, fm_class ) VALUES
12 ( 'lib.prefer_external_url', 'lib',
13   'Use external "library information URL" in copy table, if available',
14   'If set to true, the library name in the copy details section will link to the URL associated with the "Library information URL" library setting rather than the library information page generated by Evergreen.',
15   'bool', null
16 );
17
18 COMMIT;