36a02b3d7b
fix issues with live radar
23 lines
756 B
C#
23 lines
756 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations.Postgresql
|
|
{
|
|
public partial class UpdateEFRatingIndex : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_EFRating_When_ServerId_Performance_ActivityAmount",
|
|
table: "EFRating",
|
|
columns: new[] { "When", "ServerId", "Performance", "ActivityAmount" });
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_EFRating_When_ServerId_Performance_ActivityAmount",
|
|
table: "EFRating");
|
|
}
|
|
}
|
|
}
|