madewithlaravel / madewithlaravel.com

madewithlaravel.com source
3 stars 1 forks source link

Users Table Schema #2

Open rtablada opened 11 years ago

rtablada commented 11 years ago

So far I have

I think that is just about it for now? What do you guys think? Anything else can be normalized and hooked off of this basic table (profile table, etc)

msurguy commented 11 years ago

name varchar(255) delete username - let's use email instead? portfolio_url varchar(255) active - int (1)

created_at updated_at

rtablada commented 11 years ago

What will the portfolio_url be for vs a username? I'm thinking that username will be sort of like a forrst or dribbble where username will match a 2 class citizen route: Route::get('{username}', 'UserController@show'); — Sent from Mailbox for iPhone

On Wed, Jun 5, 2013 at 12:26 AM, Maksim Surguy notifications@github.com wrote:

name varchar(255) delete username - let's use email instead? portfolio_url varchar(255) active - int (1) created_at

updated_at

Reply to this email directly or view it on GitHub: https://github.com/madewithlaravel/madewithlaravel.com/issues/2#issuecomment-18954938

msurguy commented 11 years ago

got it, that makes sense, don't erase username then... =)