FluentMigrator.Tools
1.2.1
See the version list below for details.
dotnet add package FluentMigrator.Tools --version 1.2.1
NuGet\Install-Package FluentMigrator.Tools -Version 1.2.1
<PackageReference Include="FluentMigrator.Tools" Version="1.2.1" />
paket add FluentMigrator.Tools --version 1.2.1
#r "nuget: FluentMigrator.Tools, 1.2.1"
// Install FluentMigrator.Tools as a Cake Addin #addin nuget:?package=FluentMigrator.Tools&version=1.2.1 // Install FluentMigrator.Tools as a Cake Tool #tool nuget:?package=FluentMigrator.Tools&version=1.2.1
FluentMigrator is a database migration framework for .NET written in C#. The basic idea is that you can create migrations which are simply classes that derive from the Migration base class and have a Migration attribute with a unique version number attached to them. Upon executing FluentMigrator, you tell it which version to migrate to and it will run all necessary migrations in order to bring your database up to that version.
In addition to forward migration support, FluentMigrator also supports different ways to execute the migrations along with selective migrations called profiles and executing arbitrary SQL.
Learn more about Target Frameworks and .NET Standard.
-
- FluentMigrator (>= 1.2.1)
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on FluentMigrator.Tools:
Repository | Stars |
---|---|
devbridge/BetterCMS
A publishing focused and developer friendly .NET Open Source CMS.
|
Version | Downloads | Last updated |
---|---|---|
1.5.1 | 3,024 | 4/17/2015 |
1.5.0 | 2,581 | 2/27/2015 |
1.4.0 | 2,073 | 12/31/2014 |
1.3.1 | 3,445 | 11/18/2014 |
1.3.0 | 3,917 | 8/27/2014 |
1.2.1 | 2,798 | 7/12/2014 |
1.2.0 | 940 | 6/18/2014 |
1.1.2.1 | 5,746 | 1/1/2014 |
1.1.2 | 96 | 12/29/2013 |
1.1.1 | 1,864 | 6/26/2013 |
1.1.0 | 1,211 | 5/5/2013 |
1.0.6 | 5,736 | 12/31/2012 |
1.0.5 | 422 | 11/15/2012 |
1.0.4 | 471 | 10/27/2012 |
1.0.3 | 587 | 7/19/2012 |
1.0.2 | 495 | 4/25/2012 |
1.0.1 | 919 | 9/5/2011 |
Pleased to announce that FluentMigrator.Runner package is now made available by core team, thanks to package owners to add us as owner ! This should greatly improve discoverability of Sql server specific extensions.
Improvements & Features:
Split Fluentmigrator runner assembly into a new FluentMigrator.Runner package @jrolstad
Added 'GO' statements to file output when targeting Ms SQL Server @cliechty
SQLite namespace mismatch @tommarien
Support multi-statement scripts in Oracle Db @AndreyUtka
Profiles are now found in alphabetical order, allows arbitrary ordering @jochenvangasse
Bug fixes:
Profile does not get executed when a non-zero version parameter is specified @rogersillito