Its a piece of cake developing applications that run on multitude of Database management solutions.
All you need to keep Database schema scripts handy. Here is how you do it using rails scripts:
> ruby script\generate migration Contact
This will create an empty file in db/migrate folder for contact table. You need to fill it now with the [...]