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