投票的最佳數據庫模式是什麼?一對多的關係對此有好處嗎?我想有兩個表:投票數據庫模式
poll_questions
int id
varchar body
datetime created_at
datetime updated_at
poll_answers
int id
varchar body
int votes default 0
int question_id (foreign key to poll_questions.id)
datetime created_at
datetime updated_at
再就是也將是跟蹤第三個表誰投贊成票的答案,使用戶能夠一次投票:
poll_voting_history
int id
int question_id (foreign key to poll_questions.id)
int answer_id (foreign key to poll_answers.id)
int user_id (foreign key to the id in the users table)
datetime created_at
datetime updated_at
你有什麼想法?我在想它嗎?
是您提交自己的自定義答案的特定模式的用戶嗎?或來自預先生成的一組答案? – cwiggo 2014-10-22 14:28:21
如果您想要訂購答案 – WoLfPwNeR 2017-02-10 21:44:27