4a46abc46d
set the maximum height of the add link to profile on client chat move change history into a seperate service move around AC penalty processing
23 lines
667 B
C#
23 lines
667 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
namespace SharedLibraryCore.Migrations
|
|
{
|
|
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");
|
|
}
|
|
}
|
|
}
|