Commit 8cc4bf53 authored by Frank Bergmann's avatar Frank Bergmann

- fixed '' syntax error

parent 5c743908
......@@ -169,12 +169,12 @@ begin
select im_priv_create(''view_hours_all'', ''Senior Managers'');
-- New Privilege to allow accounting guys to change hours
select acs_privilege__create_privilege('edit_hours_all','Edit Hours All','Edit Hours All');
select acs_privilege__add_child('admin', 'edit_hours_all');
select acs_privilege__create_privilege(''edit_hours_all'',''Edit Hours All'',''Edit Hours All'');
select acs_privilege__add_child(''admin'', ''edit_hours_all'');
select im_priv_create('edit_hours_all', 'Accounting');
select im_priv_create('edit_hours_all', 'P/O Admins');
select im_priv_create('edit_hours_all', 'Senior Managers');
select im_priv_create(''edit_hours_all'', ''Accounting'');
select im_priv_create(''edit_hours_all'', ''P/O Admins'');
select im_priv_create(''edit_hours_all'', ''Senior Managers'');
return 0;
end;' language 'plpgsql';
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment