1 min read
Planning and creating a database before you start working on your backend can save you time
In many cases we start developing an api endpoint or an application before we knew what our database will contain and how we are going to use the data.
We have to remember that the migration file has to be created, and later on the validation rules have to match the existing migration structure. Doi…