Reputation: 1028
I modeled a database using MySQL Workbench. On my live site I have multiple instances of this database. Same structure, different content. Naming convention is something like db_user1, db_user2, etc.
If I make changes to the structure, how can I easily push those to the different databases?
Upvotes: 0
Views: 38
Reputation: 3876
Here's another answer: http://liquibase.org/
Supports database versioning, automatic sync, etc.
Upvotes: 1
Reputation: 53337
MySQL Workbench has a functcion "Synchronize with any source" (see database menu). You can invoke this function once for each target db.
Upvotes: 0
Reputation: 1084
You have to do it manually. or may be you can create procedures for it. e.g. you have rename the table name then you need to create a procedure and call them to change the name in other database also.
Upvotes: 0