e7c7145da1
reworked event api to include all events (sans unknown)
25 lines
672 B
C#
25 lines
672 B
C#
using Microsoft.EntityFrameworkCore.Migrations;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace SharedLibraryCore.Migrations
|
|
{
|
|
public partial class IndexForEFAlias : Migration
|
|
{
|
|
protected override void Up(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.CreateIndex(
|
|
name: "IX_EFAlias_IPAddress",
|
|
table: "EFAlias",
|
|
column: "IPAddress");
|
|
}
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
{
|
|
migrationBuilder.DropIndex(
|
|
name: "IX_EFAlias_IPAddress",
|
|
table: "EFAlias");
|
|
}
|
|
}
|
|
}
|