c18be20899
update various small code bits
24 lines
681 B
C#
24 lines
681 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations
|
|
{
|
|
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");
|
|
}
|
|
}
|
|
}
|