vote up 0 vote down star

I currently have a website with three builds: development, staging and production. Each of those has it's own MySQL database instance. Each of the instances has different data in it which should not change (orders).

My question is, if I made changes to the structure of the development database, is there an easy way to propogate those changes to staging and production without affecting the data?

Thanks.

flag

Sure: make all chnages through TSQL script only....Then you can apply to all environments. – Mitch Wheat Oct 10 at 10:44

2 Answers

vote up 1 vote down check

Just do all of your schema changes with scripts which you keep in source control. When you release code to staging, then you will ship with the build the scripts to update the schema, and use the same ones when you ship to production.

It's that easy.

Don't EVER manually hack the database schema. Test your migration and rollback scripts (making rollback scripts is a VERY good idea).

link|flag
vote up 1 vote down

I'm sure there is a better solution than the one I'll tell you over here... But until someone posts one... Here you go...

If you can script your database strcture (or you have them already scripted on your source control), you can compare the scripts side by side and then extract the differences to run them on the required database...

I'm sure there are tools out there that would do all that for you... But I can't recall any names and if they're free or not... I hope someone helps you more then :)

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.