RoundhousE. Basically some of the same idioms as Tarantino where you write regular SQL scripts (some companies like ours are into that). https://github.com/chucknorris/roundhouse/wiki
The least amount of configuration for RoundhousE (RH) is to provide it a database name or connection string. It will execute against the current folder looking for migration scripts:
rh /d bob
You can provide RoundhousE a folder with the folders (all optional):
- AlterDatabase
- RunAfterCreateDatabase
- Up
- Functions
- Views
- Sprocs
- Indexes
- Permissions
and it will execute everything in those folders. The items in the Up folder are only executed one time. That is where you put DDL/DML changes. The rest are considered any time scripts, which means when RH has detected the file has changed it will run it. Except the permissions folder, which is considered an every time set of scripts in case you do any auto wiring of permissions.
RH is extremely configurable, everything from the names of the folders above to the name of the tables where RH keeps migration information.
Versioning is done how you want, just provide RH a dll to pull the file version from, or an xml file and the xpath to the version information. We version based on source control, so you can always see the scripts as they were in source. This means we allow for multiple repositories to version the database as well.
It is a single file executable, but also comes with both an embeddable DLL and MSBuild DLL.
It has the idea of a refresh database, which means you can update your database without leaving Visual Studio! https://github.com/chucknorris/roundhouse/wiki/Roundhouserefreshdatabasefnh
And the disclaimer: I have had a substantial part in writing this tool because we couldn't find anything else that would meet auditing concerns, provide us with a low amount of maintenance, and be a little smarter about migrations.