2020-11-14 19:24:51 -05:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
2020-11-27 22:52:52 -05:00
|
|
|
|
namespace SharedLibraryCore.Migrations.MySql
|
2020-11-14 19:24:51 -05:00
|
|
|
|
{
|
|
|
|
|
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");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|