arialdomartini / DbUp

DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.

Home Page:http://dbup.github.io

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

DbUp is a set of .NET libraries that helps you to deploy changes to different databases like SQL Server. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.

Documentation

To learn more about DbUp check out the documentation.

Build Status

Package Stable Prerelease Issues
Documentation Documentation Status Documentation Status
DbUp-Core NuGet NuGet NuGet view
DbUp-SqlServer NuGet NuGet NuGet view
DbUp-MySql NuGet NuGet NuGet view
DbUp-SQLite NuGet NuGet NuGet view
DbUp-SQLite-Mono NuGet NuGet NuGet view
DbUp-SqlCe NuGet NuGet NuGet view
DbUp-PostgreSQL NuGet NuGet NuGet view
DbUp-Firebird NuGet NuGet NuGet view
DbUp-Oracle NuGet NuGet NuGet view

Development

For successfull unit testing install

Extensions by the community

Mainteannce and support for the extenstions where not provided by the DbUp project. If you have questions to the extions, please ask the author of the extenstion.

DbUpX

https://github.com/fiscaltec/DbUpX

Extensions to DbUp supporting easy filtering, ordering and versioning:

  • a journaling system that stores hashes of script contents, so we know if they need to rerun,
  • a concept of "dependency comments" in scripts that let you more easily control the ordering of scripts,
  • protection against code reorganisation affecting long script names,
  • utilities for sorting and filtering scripts in helpful ways.

Known Issues / Quirks

dbup-firebird

Semi-colon Delimiter in multi statement scripts

The delimiter in a multi statement script should be on a new-line. I.e:

ALTER TABLE "MyTable" ADD "foo" int default null
;

ALTER TABLE "MyTable" ADD "bar" int default null
;

About

DbUp is a .NET library that helps you to deploy changes to SQL Server databases. It tracks which SQL scripts have been run already, and runs the change scripts that are needed to get your database up to date.

http://dbup.github.io

License:MIT License


Languages

Language:C# 98.6%Language:PowerShell 1.0%Language:TSQL 0.5%Language:Smalltalk 0.0%