M Open-ILS/src/sql/Pg/002.schema.config.sql
A Open-ILS/src/sql/Pg/upgrade/0359.data.setting-prev-iss-copy-loc.sql
M Open-ILS/src/sql/Pg/950.data.seed-values.sql
git-svn-id: svn://svn.open-ils.org/ILS/trunk@17069
dcc99617-32d9-48b4-a31d-
7c20da2025e4
install_date TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
);
-INSERT INTO config.upgrade_log (version) VALUES ('0358'); -- atz
+INSERT INTO config.upgrade_log (version) VALUES ('0359'); -- Scott McKellar
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
'array'
);
+-- 0359.data.setting-prev-iss-copy-loc.sql
+
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
+VALUES (
+ 'serial.prev_issuance_copy_location',
+ oils_i18n_gettext(
+ 'setting.name',
+ 'Serials: Previous Issuance Copy Location',
+ 'coust',
+ 'label'
+ ),
+ oils_i18n_gettext(
+ 'setting.name',
+ 'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
+ 'coust',
+ 'descripton'
+ ),
+ 'link',
+ 'acpl'
+);
+
-- 0355.data.missing_pieces_format.sql
INSERT INTO action_trigger.hook (key,core_type,description,passive) VALUES
--- /dev/null
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0359'); -- Scott McKellar
+
+INSERT INTO config.org_unit_setting_type ( name, label, description, datatype, fm_class )
+VALUES (
+ 'serial.prev_issuance_copy_location',
+ oils_i18n_gettext('setting.name', 'Serials: Previous Issuance Copy Location',
+ 'coust', 'label'),
+ oils_i18n_gettext('setting.name', 'When a serial issuance is received, copies (units) of the previous issuance will be automatically moved into the configured shelving location',
+ 'coust', 'descripton'),
+ 'link',
+ 'acpl'
+);
+
+COMMIT;