mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 21:58:06 -05:00
24 lines
691 B
C#
24 lines
691 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations
|
|
{
|
|
public partial class AvgSnapValueToClientStatistics : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<double>(
|
|
name: "AverageSnapValue",
|
|
table: "EFClientStatistics",
|
|
nullable: false,
|
|
defaultValue: 0.0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropColumn(
|
|
name: "AverageSnapValue",
|
|
table: "EFClientStatistics");
|
|
}
|
|
}
|
|
}
|