You need to settle on a "formal" configuration management process that meshes well with your workflow and provides satisfactory service for the production machine. There's no magic "make everything sync up" command.
When you change the database structure of your development machine, you should be careful to save the commands that you ran. Later you run the exact same scripts to update the production database. You can't just willy-nilly modify your development database.
Main Topics
Browse All Topics





by: TiggeritoPosted on 2009-07-16 at 03:45:35ID: 24868132
Do you have a clear definition of which tables go in which direction?
You may be able to set-up replication from devel->production for the subset of tables which will be mastered by devel.
Then, as needed, you could use backup and restore to copy table data from production to devel.