FluentMigrator.Tools
1.2.0
See the version list below for details.
dotnet add package FluentMigrator.Tools --version 1.2.0
NuGet\Install-Package FluentMigrator.Tools -Version 1.2.0
<PackageReference Include="FluentMigrator.Tools" Version="1.2.0" />
paket add FluentMigrator.Tools --version 1.2.0
#r "nuget: FluentMigrator.Tools, 1.2.0"
// Install FluentMigrator.Tools as a Cake Addin #addin nuget:?package=FluentMigrator.Tools&version=1.2.0 // Install FluentMigrator.Tools as a Cake Tool #tool nuget:?package=FluentMigrator.Tools&version=1.2.0
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.0)
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 |
Improvements & Features:
Insert.IntoTable("").Row() allows providing data with dictionary in addition to dynamic @tommarien
MySql: LONGTEXT mapping added @eff0880
Migrations are now lazy loaded at startup, this to reduce build up time @wilbit
Added Constraint("name").Exists() to SchemaTable syntax @WilliamRoxit
Enable using table descriptions with non default schema @avinash9587
Bug fixes:
Validation of migrations will no longer generate exception if migrations contains more then 1 of same type @mihaipetrutiu via @tommarien
Oracle: Updated the default mapping of Int64 to NUMBER(19,0) to match the default type mapping @kramerpr
Firebird: AsString() now defaults to varchar(255) @kingpong