We add the eg.grid.circ.patron.billhistory_xacts persist key to
config.workstation_setting_type in the database.
This is a follow-on to the LP1739606: Allow saving Billing History
xacts grid commit and should be applied to master and rel_3_2.
Signed-off-by: Jason Stephenson <jason@sigio.com>
Signed-off-by: Michele Morgan <mmorgan@noblenet.org>
Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
'Serials Barcode On Receive',
'cwst', 'label'
)
+), (
+ 'eg.grid.circ.patron.billhistory_xacts', 'gui', 'object',
+ oils_i18n_gettext(
+ 'eg.grid.circ.patron.billhistory_xacts',
+ 'Grid Config: circ.patron.billhistory_xacts',
+ 'cwst', 'label'
+ )
);
--- /dev/null
+BEGIN;
+
+-- SELECT evergreen.upgrade_deps_block_check('XXXX', :eg_version);
+
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+ 'eg.grid.circ.patron.billhistory_xacts', 'gui', 'object',
+ oils_i18n_gettext(
+ 'eg.grid.circ.patron.billhistory_xacts',
+ 'Grid Config: circ.patron.billhistory_xacts',
+ 'cwst', 'label'
+ )
+);
+
+COMMIT;