c5375b661b
broke data out into its own library. may be breaking changes with existing plugins
36 lines
1.0 KiB
C#
36 lines
1.0 KiB
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Data.Migrations.MySql
|
|
{
|
|
public partial class Update : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<float>(
|
|
name: "MaxAngleDistance",
|
|
table: "EFHitLocationCounts",
|
|
nullable: false,
|
|
defaultValue: 0f);
|
|
|
|
migrationBuilder.AddColumn<double>(
|
|
name: "MaxStrain",
|
|
table: "EFClientStatistics",
|
|
nullable: false,
|
|
defaultValue: 0.0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "MaxAngleDistance",
|
|
table: "EFHitLocationCounts");
|
|
|
|
migrationBuilder.DropColumn(
|
|
name: "MaxStrain",
|
|
table: "EFClientStatistics");
|
|
}
|
|
}
|
|
}
|