How to implement Twitter retweet action in my database
问题 I am implementing web application similar to Twitter. I need to implement 'retweet' action, and one tweet can by retweeted by one person multiple times . I have a basic 'tweets' table that have columns for: Tweets: tweet_id | tweet_text | tweet_date_created | tweet_user_id (where tweet_id is primary key for tweets, tweet_text contains tweet text, tweet_date_created is the DateTime when tweet was created and tweet_user_id is the foreign key to users table and identifies user who has created