I\'m new to rails, and I\'m working on my second rails app.
The app will have different roles for users, but some users will have multiple roles.
Every user of t
You can have two models User and Role. And Role belongs to User.
Specify role of users (like admin, moderator) in Role model.