I want to create a schema for a ACL; however, I\'m torn between a couple of ways of implementing it.
I am pretty sure I don\'t want to deal with cascading permission
You can use a SET to assign the roles.
CREATE TABLE permission ( id integer primary key autoincrement ,name varchar ,perm SET('create', 'edit', 'delete', 'view') ,resource_id integer );