BEFORE INSERT OR UPDATE ON config.db_patch_dependencies
FOR EACH ROW EXECUTE PROCEDURE evergreen.array_overlap_check ('deprecates');
-INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1288', :eg_version); -- phasefx / csharp
+INSERT INTO config.upgrade_log (version, applied_to) VALUES ('1289', :eg_version); -- rhamby / rfrasur / gmcharlt
CREATE TABLE config.bib_source (
id SERIAL PRIMARY KEY,
--- /dev/null
+BEGIN;
+
+SELECT evergreen.upgrade_deps_block_check('1289', :eg_version);
+
+
+ALTER TABLE biblio.record_note ADD COLUMN deleted BOOLEAN DEFAULT FALSE;
+
+INSERT INTO permission.perm_list ( id, code, description ) VALUES
+( 633, 'CREATE_RECORD_NOTE', oils_i18n_gettext(633,
+ 'Allow the user to create a record note', 'ppl', 'description')),
+( 634, 'UPDATE_RECORD_NOTE', oils_i18n_gettext(634,
+ 'Allow the user to update a record note', 'ppl', 'description')),
+( 635, 'DELETE_RECORD_NOTE', oils_i18n_gettext(635,
+ 'Allow the user to delete a record note', 'ppl', 'description'));
+
+INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
+VALUES (
+ 'eg.grid.catalog.record.notes', 'gui', 'object',
+ oils_i18n_gettext(
+ 'eg.grid.catalog.record.notes',
+ 'Grid Config: eg.grid.catalog.record.notes',
+ 'cwst', 'label'
+ )
+);
+
+COMMIT;
+++ /dev/null
-BEGIN;
-
-SELECT evergreen.upgrade_deps_block_check('xxxx', :eg_version);
-
-
-ALTER TABLE biblio.record_note ADD COLUMN deleted BOOLEAN DEFAULT FALSE;
-
-INSERT INTO permission.perm_list ( id, code, description ) VALUES
-( 633, 'CREATE_RECORD_NOTE', oils_i18n_gettext(633,
- 'Allow the user to create a record note', 'ppl', 'description')),
-( 634, 'UPDATE_RECORD_NOTE', oils_i18n_gettext(634,
- 'Allow the user to update a record note', 'ppl', 'description')),
-( 635, 'DELETE_RECORD_NOTE', oils_i18n_gettext(635,
- 'Allow the user to delete a record note', 'ppl', 'description'));
-
-INSERT INTO config.workstation_setting_type (name, grp, datatype, label)
-VALUES (
- 'eg.grid.catalog.record.notes', 'gui', 'object',
- oils_i18n_gettext(
- 'eg.grid.catalog.record.notes',
- 'Grid Config: eg.grid.catalog.record.notes',
- 'cwst', 'label'
- )
-);
-
-COMMIT;