using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace gehGassi.Persistence.Migrations
{
///
public partial class IdentityDocumentFlagsAdded : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "FlagsValue",
table: "IdentityDocuments",
type: "nvarchar(1000)",
maxLength: 1000,
nullable: true);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "FlagsValue",
table: "IdentityDocuments");
}
}
}