25 lines
675 B
C#
25 lines
675 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
|
|
#nullable disable
|
|
|
|
namespace Data.Migrations.Sqlite
|
|
{
|
|
public partial class AddLastConnectionIndexEFClient : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_EFClients_LastConnection",
|
|
table: "EFClients",
|
|
column: "LastConnection");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_EFClients_LastConnection",
|
|
table: "EFClients");
|
|
}
|
|
}
|
|
}
|