Skip to content

Instantly share code, notes, and snippets.

@gautamk
Created February 3, 2012 14:52
Show Gist options
  • Save gautamk/1730529 to your computer and use it in GitHub Desktop.
Save gautamk/1730529 to your computer and use it in GitHub Desktop.
INSERT INTO `user_resources` (`id`, `name`, `description`, `parentId`) VALUES
(1, 'test', 'Acl Test Controller', NULLL)
INSERT INTO `user_roles` (`id`, `name`, `description`, `parentId`) VALUES
(1, 'test', 'Acl Test Role', NULLL)
INSERT INTO `user_permissions` (`id` ,`role` ,`resource` ,`read` ,`write` ,`modify` ,`delete` ,`publish`)
VALUES (NULL , '1', '1', '1', '1', '0', '0', '0');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment