2018-09-16 16:34:16 -04:00
|
|
|
|
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
|
|
2021-03-22 12:09:25 -04:00
|
|
|
|
namespace Data.Migrations.MySql
|
2018-09-16 16:34:16 -04:00
|
|
|
|
{
|
|
|
|
|
public partial class AddIndexToMessageTimeSent : Migration
|
|
|
|
|
{
|
|
|
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.CreateIndex(
|
|
|
|
|
name: "IX_EFClientMessages_TimeSent",
|
|
|
|
|
table: "EFClientMessages",
|
|
|
|
|
column: "TimeSent");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
{
|
|
|
|
|
migrationBuilder.DropIndex(
|
|
|
|
|
name: "IX_EFClientMessages_TimeSent",
|
|
|
|
|
table: "EFClientMessages");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|