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