vote up 1 vote down star

I'm not quite sure how to approach this issue:

I am creating a web application that has an invite only registration system. An admin user sends an email invitation to a user, the user clicks the link, and takes them to a page where they can create an account that has been linked to their email address.

My initial idea was to insert a row into my users table, with the verified column marked false. The problem is I have username, and password as required fields and username must be unique. So I can't just insert an empty row to be filled out later.

Should I create a separate table for the invitations? What would be the best way to approach this type of scenario?

Update: The admin will enter the first name, last name, email address, and user role (permissions). So I will need to store all these things in the invitations table. I could also store date sent and update that value if the email ever needed to be re-sent.

flag

65% accept rate

5 Answers

vote up 5 vote down check

Yes, you would make a separate table to manage invitations.

Then when an invitation is accepted, you have a few choices. First you'll want to decide if you need to maintain an association to the original invitation either for tracking or "family tree" or some other historical purposes.

Next, if so, you'll need to decide how you'll do that. Delete the invitation and store any relevant info w/the user record? Keep the invitation record and set a foreign key?

I might be able to give some more fine-tuned advice if I know more about the system you intend to create.

link|flag
I added an update to my question. If you have more specific questions, please ask. – Andrew Oct 27 at 18:27
Yeah, I really don't have anything to add. You're just going to ask yourself how must historical information you care about in terms of what you keep after the invitation -> registration process. – Peter Bailey Oct 27 at 19:03
thanks, I hadn't thought about what to do with the history until your answer. – Andrew Oct 27 at 20:06
vote up 0 vote down

A separate table makes the most sense to me. That would allow you to maintain data integrity in the users table, and would provide a more readable data model. It is easier to say "invitations go in the invitations table" than "invitations go in the users table but with the verified column set to false".

link|flag
vote up 0 vote down

I would recommend a separate table for invitations. It seems pretty clear to me that your invitation is basically a token allowing someone to register.

link|flag
token, exactly! A user can't register unless their email address (token) has been added to the list – Andrew Oct 27 at 18:29
hmm, in light of your recent update, i suppose my opinion has changed. before, it wasn't clear that there was a lot of account information specified when the invitation was sent. if the admin already knows their name, email, their roles, etc., then you might as well just create the User and go back to your verified column idea. You could always use their email address as their username, which you could allow them to change after verifying/completing registration. – HackedByChinese Oct 27 at 18:34
vote up 0 vote down

Couple of ways to look at this. If you go the seperate route where you create another table what happens when the eval phase is over, do you have to copy those eval users over to your real user table? User names can be defaulted to a specially crafted GUID that you've programmed to handle entry into your users table.

link|flag
what do you mean by eval phase? – Andrew Oct 27 at 18:16
i think jonh is assuming you are doing an invite only beta, like google is fond of doing, and that at some point your system would be open to all. I get the impression from your post that instead your system will always be invite only. – Peter Oct 27 at 18:23
yes, this is a private, invite only system. never open to the public. – Andrew Oct 27 at 18:28
@Peter - yes that is what I meant :) @Andrew - sorry for the confusion – JonH Oct 27 at 18:54
vote up 3 vote down

You have to consider scenarios where invitations get lost, get deleted by accident, or for a host of other reasons, are not usable and have to be re-sent.

Also, an invitation is a separate entity from a registration. I think you should create a separate table to track the invites vs. to see who registered (from which invite)

link|flag
thanks for your answer. I hadn't thought about lost/deleted invitation emails until your answer. – Andrew Oct 27 at 20:08

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.