IW4M-Admin/Data/Migrations/Postgresql/20190914011524_AddCurrentSnapValueToSnapshot.cs

24 lines
690 B
C#
Raw Normal View History

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