c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
24 lines
686 B
C#
24 lines
686 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace Data.Migrations.Sqlite
|
|
{
|
|
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");
|
|
}
|
|
}
|
|
}
|