using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace Data.Migrations.Postgresql { public partial class AddConnectionInterruptedToEFServerSnapshot : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.AddColumn( name: "ConnectionInterrupted", table: "EFServerSnapshot", type: "boolean", nullable: true); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropColumn( name: "ConnectionInterrupted", table: "EFServerSnapshot"); } } }