Hi all..
First of all, I'm sorry about the feedback-nature of this question. I'm trying to generalize it as much as I can so others can gain from it as well, but I don't really have anyone to give me feedback on this design, so I hoped you guys could help me.
With that being said, I wan't to model different usertypes in my database. I would like to have the credentials for the usertypes to be shared though. This problem is basically about inheritance, which is something that the RDB's doesn't do too well.
I did however come up with this design:

.. but I'm unsure if I should be satisfied with it. What I don't like about it is the amount of business-contracts in it. First of all, I don't know which usertype belongs to a given credential, which means that I potentially have to search N tables, with N being the number of usertypes I got. Therefore, I thought of linking the type of a user with the roles he or she is in. So, if a user with credentials A has the roles of "UserType1" and "UserType2" I would expect to have a tuggle in the UserType1 and UserType2 tables representing him or her. - and I'm not sure if I like these "business-logic"-constraints.. :)
Any feedback on this given design would be very much appreciated, just as any alternative designs would be.
Thanks in advance
