36a02b3d7b
fix issues with live radar
21 lines
564 B
C#
21 lines
564 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations.Postgresql
|
|
{
|
|
public partial class AddAvgRecoilOffset : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.AddColumn<double>(
|
|
name: "AverageRecoilOffset",
|
|
table: "EFClientStatistics",
|
|
nullable: false,
|
|
defaultValue: 0.0);
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
}
|
|
}
|
|
}
|