Up until now we've broken the destroyed the database and re-created it. But it is time for a proper system for managing changes to the database.
As I see it we could do it two ways:
- Just write the changes into the existing schema.sql, creating one long schema file
- Create a separate sql file for each change
Personally, I'd go with option 1, since it's less changes in the code.
Up until now we've broken the destroyed the database and re-created it. But it is time for a proper system for managing changes to the database.
As I see it we could do it two ways:
Personally, I'd go with option 1, since it's less changes in the code.