Hi everyone. I'm struggling with this simple idea. Look at reddit, when you sign up for a new account.. you automatically subscribe to some default channels.
I want to do the same with my website.
I know I could do the simple and stupid user_chan with id, user_id, chan_id
if chan is like this :
ID | NAME
1 | videos
2 | pictures
user_chan would be like this (i'm user 1)
ID | USER_ID | CHAN_ID
1 | 1 | 1
2 | 1 | 2
I'm trying to be very clear here :D
I guess that's how reddit works. But everytime a user signs up, they must have to insert a dozen of rows. And I guess they have tons of users !!
So is a solution inside user table like this more clever ?:
ID | USER_NICKNAME | CHANS
1 | me | 1,2