How to keep your database schema updated with Simple.Migrations

from blog Just Some Code, | ↗ original
Do you email SQL scripts to a coworker to update your database schema? Do you update your database schema by hand? I’ve being there. Let’s find out about database migrations with Simple.Migrations. A database migration is a uniquely identified operation to create, update or delete database objects. Migrations are a more scalable and maintainable...