using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace W542.GandalfReborn.Data.Migrations
{
///
public partial class klhmpdmpmgr : Migration
{
///
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn(
name: "Algorithm",
schema: "gr",
table: "AuthCode",
type: "text",
nullable: false,
defaultValue: "");
migrationBuilder.AddColumn(
name: "SubjectId",
schema: "gr",
table: "AuthCode",
type: "bigint",
nullable: false,
defaultValue: 0L);
}
///
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "Algorithm",
schema: "gr",
table: "AuthCode");
migrationBuilder.DropColumn(
name: "SubjectId",
schema: "gr",
table: "AuthCode");
}
}
}