![]() |
VOOZH | about |
dotnet add package FluentMigrator.Tools --version 8.0.1
NuGet\Install-Package FluentMigrator.Tools -Version 8.0.1
<PackageReference Include="FluentMigrator.Tools" Version="8.0.1" />
<PackageVersion Include="FluentMigrator.Tools" Version="8.0.1" />Directory.Packages.props
<PackageReference Include="FluentMigrator.Tools" />Project file
paket add FluentMigrator.Tools --version 8.0.1
#r "nuget: FluentMigrator.Tools, 8.0.1"
#:package FluentMigrator.Tools@8.0.1
#addin nuget:?package=FluentMigrator.Tools&version=8.0.1Install as a Cake Addin
#tool nuget:?package=FluentMigrator.Tools&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.
Learn more about Target Frameworks and .NET Standard.
This package has no dependencies.
Showing the top 5 NuGet packages that depend on FluentMigrator.Tools:
| Package | Downloads |
|---|---|
|
BetterCms.Core
Core functionality of the publishing focused and developer friendly .NET Open source CMS. |
|
|
PeanutButter.FluentMigrator
A generic Migrations Runner for FluentMigrator so you can run in migrations within your application. |
|
|
EmailSpooler.Win32Service.DB
Use this project to pull in the three required Fluent Migrations to make your database able to store emails that the PeanutButter.EmailSpooler.Win32Service service can spool for you. You will need to inherit from the following migrations and add those inherited versions to your migration strategy: * Migration_1_CreateEmail * Migration_2_CreateEmailRecipient * Migration_3_CreateEmailAttachment |
|
|
BetterModules.Core
The Core module for BetterModules. BetterModules is modular architecture supporting web based and business logic modules. |
|
|
AnalyzerApi
Web API MVC 5 Application with auto update implementation via self-package as NuGet package |
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 |
|---|---|---|
| 8.0.1 | 6,347 | 1/21/2026 |
| 8.0.0 | 455 | 1/14/2026 |
| 7.2.0 | 11,588 | 12/2/2025 |
| 7.1.0 | 11,022 | 3/29/2025 |
| 7.0.0 | 822 | 3/19/2025 |
| 6.2.0 | 27,293 | 10/4/2024 |
| 6.1.4 | 2,007 | 10/2/2024 |
| 6.1.1 | 2,045 | 10/2/2024 |
| 6.1.0 | 2,143 | 10/2/2024 |
| 6.0.0 | 2,553 | 9/25/2024 |
| 5.2.0 | 21,973 | 3/28/2024 |
| 5.1.0 | 4,654 | 2/19/2024 |
| 5.0.0 | 9,991 | 12/10/2023 |
| 3.3.2 | 60,580 | 1/14/2022 |
| 3.3.1 | 15,552 | 9/21/2021 |
| 3.3.0 | 1,710 | 8/26/2021 |
| 3.2.17 | 4,661 | 6/17/2021 |
| 3.2.16 | 8,722 | 5/19/2021 |
| 3.2.15 | 13,987 | 2/19/2021 |