Add permissions for IMPORT_ALT_TCN and ADMIN_TRIGGER_EVENT_DEF to upgrade and seed...
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 5 Mar 2010 16:52:34 +0000 (16:52 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Fri, 5 Mar 2010 16:52:34 +0000 (16:52 +0000)
git-svn-id: svn://svn.open-ils.org/ILS/trunk@15713 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/002.schema.config.sql
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/0179.data.permission.atev_and_alt_tcn.sql [new file with mode: 0644]

index 6bcef9a..6219e2c 100644 (file)
@@ -51,7 +51,7 @@ CREATE TABLE config.upgrade_log (
     install_date    TIMESTAMP WITH TIME ZONE NOT NULL DEFAULT NOW()
 );
 
-INSERT INTO config.upgrade_log (version) VALUES ('0178'); -- Scott McKellar
+INSERT INTO config.upgrade_log (version) VALUES ('0179'); -- dbs
 
 CREATE TABLE config.bib_source (
        id              SERIAL  PRIMARY KEY,
index 970f98a..352889e 100644 (file)
@@ -1253,7 +1253,8 @@ INSERT INTO permission.perm_list VALUES
     (360, 'RETRIEVE_RESERVATION_PULL_LIST', oils_i18n_gettext(360, 'Allows a user to retrieve a booking reservation pull list', 'ppl', 'description')),
     (361, 'CAPTURE_RESERVATION', oils_i18n_gettext(361, 'Allows a user to capture booking reservations', 'ppl', 'description')),
     (362, 'MERGE_USERS', oils_i18n_gettext(362, 'Allows user records to be merged', 'ppl', 'description')),
-    (363, 'ALLOW_ALT_TCN', oils_i18n_gettext(363, 'Allows staff to import a record using an alternate TCN to avoid conflicts', 'ppl', 'description'))
+    (363, 'ALLOW_ALT_TCN', oils_i18n_gettext(363, 'Allows staff to import a record using an alternate TCN to avoid conflicts', 'ppl', 'description')),
+    (364, 'ADMIN_TRIGGER_EVENT_DEF', oils_i18n_gettext(364, 'Allow a user to administer trigger event definitions', 'ppl', 'description'))
 ;
 
 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000);
diff --git a/Open-ILS/src/sql/Pg/upgrade/0179.data.permission.atev_and_alt_tcn.sql b/Open-ILS/src/sql/Pg/upgrade/0179.data.permission.atev_and_alt_tcn.sql
new file mode 100644 (file)
index 0000000..34a1b15
--- /dev/null
@@ -0,0 +1,11 @@
+BEGIN;
+
+INSERT INTO config.upgrade_log (version) VALUES ('0179'); -- dbs
+
+INSERT INTO permission.perm_list (id, code, description)
+    VALUES (363, 'ALLOW_ALT_TCN', 'Allows staff to import a record using an alternate TCN to avoid conflicts');
+
+INSERT INTO permission.perm_list (id, code, description)
+    VALUES (364, 'ADMIN_TRIGGER_EVENT_DEF', 'Allow a user to administer trigger event definitions');
+
+COMMIT;