I have a local server where I do all my testing and work. Once I'm done, I just load the db schema along with the corresponding code. However, the problem arises when I make some changes to the circuit. I need to manually enter the query "alter table" on my real server.
Is there a way to get incremental changes that have occurred in the db schema so that I can just apply the new ones? Or do I need to manually track?
If I use mysqldump, then it creates the final db schema (not with alter table, etc.).
Many thanks.
source
share