using Microsoft.EntityFrameworkCore.Migrations; namespace ThAmCo.Events.Data.Migrations { public partial class AddSoftDeleteEvent : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "IsDeleted", schema: "thamco.events", table: "Events", nullable: false, defaultValue: false); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "IsDeleted", schema: "thamco.events", table: "Events"); } } }