FluentMigrator 1.1.2.1
See the version list below for details.
dotnet add package FluentMigrator --version 1.1.2.1
NuGet\Install-Package FluentMigrator -Version 1.1.2.1
<PackageReference Include="FluentMigrator" Version="1.1.2.1" />
paket add FluentMigrator --version 1.1.2.1
#r "nuget: FluentMigrator, 1.1.2.1"
// Install FluentMigrator as a Cake Addin #addin nuget:?package=FluentMigrator&version=1.1.2.1 // Install FluentMigrator as a Cake Tool #tool nuget:?package=FluentMigrator&version=1.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.
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net35 is compatible. net40 is compatible. net403 was computed. net45 was computed. net451 was computed. net452 was computed. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
This package has no dependencies.
GitHub repositories (17)
Showing the top 5 popular GitHub repositories that depend on FluentMigrator:
Repository | Stars |
---|---|
aspnetboilerplate/aspnetboilerplate
ASP.NET Boilerplate - Web Application Framework
|
|
nopSolutions/nopCommerce
ASP.NET Core eCommerce software. nopCommerce is a free and open-source shopping cart.
|
|
elsa-workflows/elsa-core
A .NET workflows library
|
|
serenity-is/Serenity
Business Apps Made Simple with Asp.Net Core MVC / TypeScript
|
|
BrighterCommand/Brighter
A framework for building messaging apps with .NET and C#.
|
Version | Downloads | Last updated |
---|---|---|
1.5.1 | 11,307 | 4/17/2015 |
1.5.0 | 7,533 | 2/27/2015 |
1.4.0 | 7,779 | 12/31/2014 |
1.3.1 | 7,354 | 11/18/2014 |
1.3.0 | 15,801 | 8/27/2014 |
1.2.1 | 5,375 | 7/12/2014 |
1.2.0 | 1,408 | 6/18/2014 |
1.1.2.1 | 11,635 | 1/1/2014 |
1.1.2 | 133 | 12/29/2013 |
1.1.1 | 3,715 | 6/26/2013 |
1.1.0 | 1,374 | 5/5/2013 |
1.0.6 | 7,052 | 12/31/2012 |
1.0.5 | 508 | 11/15/2012 |
1.0.4 | 291 | 10/27/2012 |
1.0.3 | 893 | 7/19/2012 |
1.0.2 | 473 | 4/25/2012 |
1.0.1 | 1,499 | 9/5/2011 |
0.9.2 | 94 | 7/24/2011 |
0.9.1 | 94 | 7/24/2011 |
0.9.0 | 200 | 1/7/2011 |
Newly added description feature was declared in the Migration as String(int.MaxValue), which caused issues on some processors like MySqlProcessor because of missing type map or just not possible. We've changed the migration so it now declares it as : AsString(1024) which should cause no issues. Even if you where using 1.1.2 before on a supported db like for instance SqlServer.
From now on even if you don't provide a description in your migration attribute the description column contains the migration class name.