]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/sql/Pg/upgrade/0621.data.opac_payment_history_age_limit.sql
Stamping upgrade script for revive-qp-fts (LP 1161601).
[working/Evergreen.git] / Open-ILS / src / sql / Pg / upgrade / 0621.data.opac_payment_history_age_limit.sql
1 -- Evergreen DB patch XXXX.data.opac_payment_history_age_limit.sql
2
3 BEGIN;
4
5 SELECT evergreen.upgrade_deps_block_check('0621', :eg_version);
6
7 INSERT into config.org_unit_setting_type (name, label, description, datatype)
8 VALUES (
9     'opac.payment_history_age_limit',
10     oils_i18n_gettext('opac.payment_history_age_limit',
11         'OPAC: Payment History Age Limit', 'coust', 'label'),
12     oils_i18n_gettext('opac.payment_history_age_limit',
13         'The OPAC should not display payments by patrons that are older than any interval defined here.', 'coust', 'label'),
14     'interval'
15 );
16
17 COMMIT;