Bug 11897: Add mising semi-colon to user*.sql
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Tue, 9 Oct 2018 17:11:28 +0000 (14:11 -0300)
committerNick Clemens <nick@bywatersolutions.com>
Tue, 9 Oct 2018 17:19:00 +0000 (17:19 +0000)
Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
installer/data/mysql/userflags.sql
installer/data/mysql/userpermissions.sql

index a962fab..6823599 100644 (file)
@@ -19,6 +19,6 @@ INSERT INTO userflags (bit, flag, flagdesc, defaulton) VALUES
 (20, 'lists', 'Lists', 0),
 (21, 'clubs', 'Patron clubs', '0'),
 (22,'ill','The Interlibrary Loans Module',0),
-(23,'self_check','Self check modules',0)
+(23,'self_check','Self check modules',0),
 (24, 'stockrotation', 'Manage stockrotation operations', 0)
 ;
index 9f1accd..9245615 100644 (file)
@@ -89,7 +89,7 @@ INSERT INTO permissions (module_bit, code, description) VALUES
    (21, 'edit_clubs', 'Create and update clubs'),
    (21, 'enroll', 'Enroll patrons in clubs'),
    (23, 'self_checkin_module', 'Log into the self check-in module'),
-   (23, 'self_checkout_module', 'Perform self checkout at the OPAC. It should be used for the patron matching the AutoSelfCheckID')
+   (23, 'self_checkout_module', 'Perform self checkout at the OPAC. It should be used for the patron matching the AutoSelfCheckID'),
    (24, 'manage_rotas', 'Create, edit and delete rotas'),
    (24, 'manage_rota_items', 'Add and remove items from rotas')
 ;