Seed values/upgrade script for card edit perms
authorThomas Berezansky <tsbere@mvlc.org>
Tue, 1 Nov 2011 14:11:24 +0000 (10:11 -0400)
committerJason Etheridge <jason@esilibrary.com>
Thu, 1 Dec 2011 20:59:29 +0000 (15:59 -0500)
Not assigned to anyone by default.

Signed-off-by: Thomas Berezansky <tsbere@mvlc.org>
Signed-off-by: Jason Etheridge <jason@esilibrary.com>
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.patron_card_editor.sql [new file with mode: 0644]

index 2422cfe..628856f 100644 (file)
@@ -1442,7 +1442,11 @@ INSERT INTO permission.perm_list ( id, code, description ) VALUES
  ( 512, 'ACQ_INVOICE_REOPEN', oils_i18n_gettext( 512,
     'Allows a user to reopen an Acquisitions invoice', 'ppl', 'description' )),
  ( 513, 'DEBUG_CLIENT', oils_i18n_gettext( 513,
-    'Allows a user to use debug functions in the staff client', 'ppl', 'description' ));
+    'Allows a user to use debug functions in the staff client', 'ppl', 'description' )),
+ ( 514, 'UPDATE_PATRON_ACTIVE_CARD', oils_i18n_gettext( 514,
+    'Allows a user to manually adjust a patron''s active cards', 'ppl', 'description')),
+ ( 515, 'UPDATE_PATRON_PRIMARY_CARD', oils_i18n_gettext( 515,
+    'Allows a user to manually adjust a patron''s primary card', 'ppl', 'description'));
 
 SELECT SETVAL('permission.perm_list_id_seq'::TEXT, 1000);
 
diff --git a/Open-ILS/src/sql/Pg/upgrade/XXXX.patron_card_editor.sql b/Open-ILS/src/sql/Pg/upgrade/XXXX.patron_card_editor.sql
new file mode 100644 (file)
index 0000000..2c7cd3a
--- /dev/null
@@ -0,0 +1,6 @@
+INSERT INTO permission.perm_list ( id, code, description ) VALUES
+ ( 514, 'UPDATE_PATRON_ACTIVE_CARD', oils_i18n_gettext( 514,
+    'Allows a user to manually adjust a patron''s active cards', 'ppl', 'description')),
+ ( 515, 'UPDATE_PATRON_PRIMARY_CARD', oils_i18n_gettext( 515,
+    'Allows a user to manually adjust a patron''s primary card', 'ppl', 'description'));
+