FluentMigrator を使用して移行を管理するプロジェクトを継承しました。当初、プロジェクトはアプリケーションの起動時に移行をインプロセスで実行していましたが、IT 部門がそれを取り締まり、現在はデータベースのすべての変更についてスクリプトを DBA に提供する必要があります。
この移行の一環として、移行を Migrations という新しいプロジェクトに移動しました。コマンド ライン ツールを使用して移行を実行しようとすると、動作しているように見えますが、データベースに移行が適用されません。VersionInfo テーブルが存在しない場合は作成されるため、データベース文字列は正しいです。
多くの移行がありますが、それらのほとんどは非常に単純です。最初の例を次に示します。
SQL Server 2012 と FluentMigrator 1.2.1 を使用しています。
gunr2171 のテキストのコマンド ラインは次のとおりです。
.\Packages\FluentMigrator.1.2.1.0\tools\migrate.exe -c "Data Source=.;Integrated Security=True;Initial Catalog=portal_test" -db sqlserver2012 -a .\source\Migrations\bin\Debug\migrations.dll
移行のサンプル:
using System;
using System.Collections.Generic;
using System.Linq;
using FluentMigrator;
namespace Migrations
{
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1707:IdentifiersShouldNotContainUnderscores")]
[Migration(1)]
public class M001_CreateAccountTable : Migration
{
public override void Up()
{
Create.Table("Accounts")
.WithColumn("Id").AsInt32().NotNullable().Identity().Unique()
.WithColumn("PartnerCode").AsString().Nullable()
.WithColumn("AccountType").AsInt32().NotNullable()
.WithColumn("Code").AsString().NotNullable().Unique().PrimaryKey()
.WithColumn("Name").AsString().NotNullable()
.WithColumn("PrimaryDomainName").AsString().Nullable()
.WithColumn("IsFederated").AsBoolean().NotNullable()
.WithColumn("IsActive").AsBoolean().Nullable().WithDefaultValue(1)
.WithColumn("FederatedEndpoint").AsString().Nullable()
.WithColumn("CreatedBy").AsString().NotNullable()
.WithColumn("CreatedOn").AsDateTime().NotNullable().WithDefaultValue(DateTime.Now)
.WithColumn("ModifiedBy").AsString().NotNullable()
.WithColumn("ModifiedOn").AsDateTime().NotNullable().WithDefaultValue(DateTime.Now);
}
public override void Down()
{
Delete.Table("Accounts");
}
}
}