mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-10 15:20:48 -05:00
update for database provider specific migrations
fix issues with live radar
This commit is contained in:
35
SharedLibraryCore/Migrations/MySql/20180502195450_Update.cs
Normal file
35
SharedLibraryCore/Migrations/MySql/20180502195450_Update.cs
Normal file
@ -0,0 +1,35 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace SharedLibraryCore.Migrations.MySql
|
||||
{
|
||||
public partial class Update : Migration
|
||||
{
|
||||
protected override void Up(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.AddColumn<float>(
|
||||
name: "MaxAngleDistance",
|
||||
table: "EFHitLocationCounts",
|
||||
nullable: false,
|
||||
defaultValue: 0f);
|
||||
|
||||
migrationBuilder.AddColumn<double>(
|
||||
name: "MaxStrain",
|
||||
table: "EFClientStatistics",
|
||||
nullable: false,
|
||||
defaultValue: 0.0);
|
||||
}
|
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder)
|
||||
{
|
||||
migrationBuilder.DropColumn(
|
||||
name: "MaxAngleDistance",
|
||||
table: "EFHitLocationCounts");
|
||||
|
||||
migrationBuilder.DropColumn(
|
||||
name: "MaxStrain",
|
||||
table: "EFClientStatistics");
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user