using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace SCHALE.Common.Migrations.SqlServerMigrations { /// public partial class UnMapIsNew : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsNew", table: "Characters"); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsNew", table: "Characters", type: "bit", nullable: false, defaultValue: false); } } }