'Allow administration of MARC tag tables', 'ppl', 'description' )),
( 563, 'ADJUST_BILLS', oils_i18n_gettext( 563,
'Allow a user to adjust a bill (generally to zero)', 'ppl', 'description' ))
+ ( 564, 'ACQ_OVERRIDE_OVER_ALLOCATION', oils_i18n_gettext( 564,
+ 'Allow staff to override an allocation of more funds than are available', 'ppl', 'description' ))
;
SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000);
--- /dev/null
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('XXXX');
+
+INSERT INTO permission.perm_list VALUES
+ ( 564, 'ACQ_OVERRIDE_OVER_ALLOCATION', oils_i18n_gettext( 564,
+ 'Allow staff to override an allocation of more funds than are available', 'ppl', 'description' ))
+;
+
+COMMIT;