install_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
);
-INSERT INTO config.upgrade_log (version) VALUES ('0169'); -- phasefx
+INSERT INTO config.upgrade_log (version) VALUES ('0170'); -- phasefx
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
'interval' ),
( 'credit.payments.allow',
- '',
+ 'Allow Credit Card Payments',
'If enabled, patrons will be able to pay fines accrued at this location via credit card',
'bool' ),
( 'global.default_locale',
- 'Allow Credit Card Payments',
+ 'Global Default Locale',
null,
'string' ),
--- /dev/null
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0170'); -- phasefx
+
+UPDATE config.org_unit_setting_type
+ SET label = 'Global Default Locale' -- FIXME: Ironically, no I18N here nor in the seed data
+ WHERE name = 'global.default_locale' AND label = 'Allow Credit Card Payments';
+
+UPDATE config.org_unit_setting_type
+ SET label = 'Allow Credit Card Payments'
+ WHERE name = 'credit.payments.allow' AND label = '';
+
+COMMIT;