]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/1253.data.booking-print-context.sql
LP#1891550: stamp schema update and add release notes entry
[Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 1253.data.booking-print-context.sql
1
2 BEGIN;
3
4 SELECT evergreen.upgrade_deps_block_check('1253', :eg_version);
5
6 INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
7 VALUES (
8     'eg.print.template_context.booking_capture', 'gui', 'string',
9     oils_i18n_gettext(
10         'eg.print.template_context.booking_capture',
11         'Print Template Context: booking_capture',
12         'cwst', 'label'
13     )
14 );
15
16 COMMIT;