2022-06-17 10:44:14 -04:00
|
|
|
|
using System;
|
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
2022-06-16 19:03:23 -04:00
|
|
|
|
|
|
|
|
|
#nullable disable
|
|
|
|
|
|
|
|
|
|
namespace Data.Migrations.MySql
|
|
|
|
|
{
|
|
|
|
|
public partial class AddDescendingTimeSentIndexEFClientMessages : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
2022-06-17 10:44:14 -04:00
|
|
|
|
try
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.Sql(@"create index IX_EFClientMessages_TimeSentDesc on EFClientMessages (TimeSent desc);");
|
|
|
|
|
}
|
|
|
|
|
catch
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.Sql(@"create index IX_EFClientMessages_TimeSentDesc on efclientmessages (TimeSent desc);");
|
|
|
|
|
}
|
2022-06-16 19:03:23 -04:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
2022-06-17 10:44:14 -04:00
|
|
|
|
migrationBuilder.Sql(@"drop index IX_EFClientMessages_TimeSentDesc on EFClientMessages;");
|
2022-06-16 19:03:23 -04:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|