Is there a way to check the diff between two database and create a migration script out of the difference? I would also need to have the migration script ordered by table so that you can remove the modifications made to a table. The situation is this, we have a staging server where people made some modifications from the development db, the development db is different from the production one, so I need a migration script with the modifications made to the development db only without the differences between the development db and the production db that were there since the beginning.
|