I'm trying to make my first app with flutter/dart and a rest-api webservice with a connection to a mysql database. The app should contain a list of employees that a company has and a list of projects that the employees are working on. Besides that, the list of projects should also have another list that shows the employees that are working on that project.
My thoughts at first: table employees: employee_id | name | projects
but then i realised that employees can work on more than one project and i tried to store multiple values in the projects column, but that didn't work. Can someone help me with this issue?
I'm fairly new to mysql, so please try to explain it in a noob-friendly way. Thanks! :D