I created 3 models and in my case I need to link the link of 3 models in the table:
user:
name
password
...
task:
...
task_status_id
task_status:
name
...
task_user:
task_id
user_id
but in my implementation me need task status for all users,like:
task_user:
task_id
user_id
task_status_id
because one of list users can finish task but not another
if anyone can tell me best way solution for this,thanks!