You are not logged in. Your edit will be placed in a queue until it is peer reviewed.
We welcome edits that make the post easier to understand and more valuable for readers. Because community members review edits, please try to make the post substantially better than how you found it, for example, by fixing grammar or adding additional resources and hyperlinks.
- According to the ER diagram a user can only be assigned one role, which is wrong. Take a look at this other ER diagram: programmers.stackexchange.com/a/206391/61852Tulains Córdova– Tulains Córdova2015-02-16 23:58:06 +00:00Commented Feb 16, 2015 at 23:58
- @user61852 I feel one role to a user is perfectly acceptable in most cases. Otherwise you would have to take into consideration how multiple permissions coming from multiple roles are to be prioritized. I don't feel that simplicity is ever wrong nor is it a worthy excuse in itself of downvoting an answer.Neil– Neil2015-02-17 11:52:56 +00:00Commented Feb 17, 2015 at 11:52
- What do you mean by "prioritize permissiones"?Tulains Córdova– Tulains Córdova2015-02-17 18:18:49 +00:00Commented Feb 17, 2015 at 18:18
- 1@user61852 And so logically you conclude that anything different is wrong? I'm not afraid to offer a simpler solution if there is nothing to be gained by having a more complicated solution. However, OP, if you prefer multiple roles to a user, you'd only have to create an intermediate table UsersRoles that associates any given user with any given role (rather than a single field in Users that determines a user's role).Neil– Neil2015-02-18 08:48:37 +00:00Commented Feb 18, 2015 at 8:48
- 1@user61852 That is needlessly complicating things imho. While it's true what you say, chances are, if you need to add permission G to manager role, you'll want all users with manager role also with permission G as well. Permissions generally don't change often, and so you're complicating both your program and the user interface just so that your client can create a "managerG" role that only has permissions for G. It's more complete, I'll give you that. That said, I wouldn't recommend it in most cases. It is this type of thinking that creates convoluted and incomprehensible programs.Neil– Neil2015-02-20 10:48:08 +00:00Commented Feb 20, 2015 at 10:48
| Show 2 more comments
How to Edit
- Correct minor typos or mistakes
- Clarify meaning without changing it
- Add related resources or links
- Always respect the author’s intent
- Don’t use edits to reply to the author
How to Format
- create code fences with backticks ` or tildes ~ ```
like so
``` - add language identifier to highlight code ```python
def function(foo):
print(foo)
``` - put returns between paragraphs
- for linebreak add 2 spaces at end
- _italic_ or **bold**
- indent code by 4 spaces
- backtick escapes
`like _so_` - quote by placing > at start of line
- to make links (use https whenever possible) <https://example.com>[example](https://example.com)<a href="https://example.com">example</a>
How to Tag
A tag is a keyword or label that categorizes your question with other, similar questions. Choose one or more (up to 5) tags that will help answerers to find and interpret your question.
- complete the sentence: my question is about...
- use tags that describe things or concepts that are essential, not incidental to your question
- favor using existing popular tags
- read the descriptions that appear below the tag
If your question is primarily about a topic for which you can't find a tag:
- combine multiple words into single-words with hyphens (e.g. design-patterns), up to a maximum of 35 characters
- creating new tags is a privilege; if you can't yet create a tag you need, then post this question without it, then ask the community to create it for you