Schema Changes: 3.2.7
Upgrade: 3.2.6 → 3.2.7
This release applied 4 migration(s) to the database schema.
| ID | Type | Description |
|---|---|---|
data |
group member details persist key |
|
data |
lp1819181 example dob |
|
data |
update timezone OUS description |
|
data |
annotate payment setting |
Migration Details
1164 — group member details persist key
Type: data
View SQL
INSERT INTO config.workstation_setting_type
(name, grp, datatype, label)
VALUES (
'eg.grid.circ.patron.group_members', 'gui', 'object',
oils_i18n_gettext(
'eg.grid.circ.patron.group_members',
'Grid Config: circ.patron.group_members',
'cwst', 'label')
);
1165 — lp1819181 example dob
Type: data
View SQL
INSERT INTO config.org_unit_setting_type (name,label,grp,description,datatype)
VALUES ('ui.patron.edit.au.dob.example',oils_i18n_gettext('ui.patron.edit.au.dob.example',
'Example dob field on patron registration', 'coust', 'label'),'gui',
oils_i18n_gettext('ui.patron.edit.au.dob.example',
'The Example for validation on the dob field in patron registration.', 'coust', 'description'),
'string');
1166 — update timezone OUS description
Type: data
View SQL
UPDATE config.org_unit_setting_type
SET description =
'Define the time zone in which a library physically resides. Examples: America/Toronto, ' ||
'America/Chicago, America/Los_Angeles, America/Vancouver, Europe/Prague. See Wikipedia for a ' ||
'<a href="https://en.wikipedia.org/wiki/List_of_tz_database_time_zones" target="_blank">complete list</a> ' ||
'(Note: Only use "canonical" timezones).'
WHERE name = 'lib.timezone'
AND description = 'Define the time zone in which a library physically resides';