36a02b3d7b
fix issues with live radar
24 lines
687 B
C#
24 lines
687 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations.MySql
|
|
{
|
|
public partial class AddSnapHitCountToClientStatistics : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<int>(
|
|
name: "SnapHitCount",
|
|
table: "EFClientStatistics",
|
|
nullable: false,
|
|
defaultValue: 0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "SnapHitCount",
|
|
table: "EFClientStatistics");
|
|
}
|
|
}
|
|
}
|