1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

update some anticheat code

This commit is contained in:
RaidMax
2019-09-27 15:53:52 -05:00
parent 6bbb130a41
commit 35597fccef
14 changed files with 1602 additions and 42 deletions

View File

@ -0,0 +1,23 @@
using Microsoft.EntityFrameworkCore.Migrations;
namespace SharedLibraryCore.Migrations
{
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");
}
}
}