2020-04-26 22:12:49 -04:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
namespace Data.Migrations.MySql
|
2020-04-26 22:12:49 -04:00
|
|
|
|
{
|
|
|
|
|
public partial class AddImpersonationIdToEFChangeHistory : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.AddColumn<int>(
|
|
|
|
|
name: "ImpersonationEntityId",
|
|
|
|
|
table: "EFChangeHistory",
|
|
|
|
|
nullable: true);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropColumn(
|
|
|
|
|
name: "ImpersonationEntityId",
|
|
|
|
|
table: "EFChangeHistory");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|