![]() |
VOOZH | about |
Requires NuGet 3.5 or higher.
dotnet add package FluentMigrator.Runner --version 8.0.1
NuGet\Install-Package FluentMigrator.Runner -Version 8.0.1
<PackageReference Include="FluentMigrator.Runner" Version="8.0.1" />
<PackageVersion Include="FluentMigrator.Runner" Version="8.0.1" />Directory.Packages.props
<PackageReference Include="FluentMigrator.Runner" />Project file
paket add FluentMigrator.Runner --version 8.0.1
#r "nuget: FluentMigrator.Runner, 8.0.1"
#:package FluentMigrator.Runner@8.0.1
#addin nuget:?package=FluentMigrator.Runner&version=8.0.1Install as a Cake Addin
#tool nuget:?package=FluentMigrator.Runner&version=8.0.1Install as a Cake Tool
FluentMigrator is a an open-source .NET library that allows you to manage and version database schema changes using a code-first approach. With FluentMigrator, you can define database migrations as code rather than maintaining SQL scripts or using other tools.
Some key features of FluentMigrator include:
For a brief overview on getting started with FluentMigrator, please see the documentation links here:
You can install FluentMigrator via NuGet:
Install-Package FluentMigrator
FluentMigrator example migration and usage:
[Migration(202401011200)]
public class CreatePersonTable : Migration
{
public override void Up()
{
Create.Table("People")
.WithColumn("Id").AsGuid().PrimaryKey()
.WithColumn("Name").AsString(100).NotNullable()
.WithColumn("Email").AsString(200).Nullable();
}
public override void Down()
{
Delete.Table("People");
}
}
For more detailed documentation and examples, please refer to [link to your comprehensive documentation].
We welcome your feedback, bug reports, and contributions to FluentMigrator.
If you'd like to contribute to the project, please follow our contributing guidelines.
FluentMigrator is released under the Apache license. See the LICENSE file for more details.
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 is compatible. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 5 NuGet packages that depend on FluentMigrator.Runner:
| Package | Downloads |
|---|---|
|
Shesha.NHibernate
Package Description |
|
|
Shesha.FluentMigrator
Package Description |
|
|
HQ
This package contains the full-stack build for HQ.io. |
|
|
Miru
Package Description |
|
|
Tofi.Framework.Data
Package Description |
Showing the top 15 popular GitHub repositories that depend on FluentMigrator.Runner:
| 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.
|
|
|
BrighterCommand/Brighter
A framework for building messaging apps with .NET and C#.
|
|
|
CodeMazeBlog/CodeMazeGuides
The main repository for all the Code Maze guides
|
|
|
bonesoul/CoiniumServ
Next-gen crypto currency mining pool software
|
|
|
lingarr-translate/lingarr
Lingarr is an application that supports both local and SaaS translation services to translate subtitle files into a specified target language. With automated translation options, Lingarr simplifies translating subtitles.
|
|
|
itlibrium/DDD-starter-dotnet
Sample implementation and comparison of various approaches to building DDD applications. Useful as a baseline to quickly start a DDD dot net project.
|
|
|
lamondlu/CoolCat
A sample about how to create a dynamic plugins mechanism with ASP.NET Core Mvc at runtime. This sample is based on .NET Core 3.1 and .NET 5
|
|
|
mregni/EmbyStat
Multiplatform statistics server for Emby server
|
|
|
Universalis-FFXIV/Universalis
A crowdsourced market board API for FFXIV.
|
|
|
fluffynuts/PeanutButter
Tasty, versatile, nutritious; goes with many things in .net.
|
|
|
sunengine/SunEngine
SunEngine – site engine with blog, forum and articles sections features support.
|
|
|
anuviswan/LearningPoint
A repository for learning different technologies, frameworks, features......
|
|
|
anton-martyniuk/Modern
.NET modern tools for fast and efficient development
|
|
|
surveysolutions/surveysolutions
Survey Solutions is a survey management and data collection system developed by the World Bank.
|
| Version | Downloads | Last Updated |
|---|---|---|
| 8.0.1 | 563,761 | 1/21/2026 |
| 8.0.0 | 54,737 | 1/14/2026 |
| 7.2.0 | 255,739 | 12/2/2025 |
| 7.1.0 | 1,716,981 | 3/29/2025 |
| 7.0.0 | 87,881 | 3/19/2025 |
| 6.2.0 | 3,816,279 | 10/4/2024 |
| 6.1.4 | 14,998 | 10/2/2024 |
| 6.1.1 | 22,593 | 10/2/2024 |
| 6.1.0 | 7,980 | 10/2/2024 |
| 6.0.0 | 64,855 | 9/25/2024 |
| 5.2.0 | 3,753,612 | 3/28/2024 |
| 5.1.0 | 466,216 | 2/19/2024 |
| 5.0.0 | 935,284 | 12/10/2023 |
| 3.3.2 | 9,432,469 | 1/14/2022 |
| 3.3.1 | 1,685,095 | 9/21/2021 |
| 3.3.0 | 445,071 | 8/26/2021 |
| 3.2.17 | 1,155,259 | 6/17/2021 |
| 3.2.16 | 566,491 | 5/19/2021 |
| 3.2.15 | 1,401,136 | 2/19/2021 |
Latest changes and detailed release notes are available on GitHub Releases: https://github.com/fluentmigrator/fluentmigrator/releases