IW4M-Admin/SharedLibraryCore/Migrations/Postgresql/20190914012015_AddSessionSnapHitsToSnapshot.cs

24 lines
681 B
C#
Raw Normal View History

2019-09-27 16:53:52 -04:00
using Microsoft.EntityFrameworkCore.Migrations;
namespace SharedLibraryCore.Migrations.Postgresql
2019-09-27 16:53:52 -04:00
{
public partial class AddSessionSnapHitsToSnapshot : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<int>(
name: "SessionSnapHits",
table: "EFACSnapshot",
nullable: false,
defaultValue: 0);
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropColumn(
name: "SessionSnapHits",
table: "EFACSnapshot");
}
}
}