From e8e3c4cba8ffa0056e984c113cfbb75319e00022 Mon Sep 17 00:00:00 2001 From: Jake Mannens Date: Fri, 20 Sep 2024 16:21:09 +1000 Subject: v0.4-rc1 --- Migrations/20230807001127_IndexPageDestination.cs | 27 +++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 Migrations/20230807001127_IndexPageDestination.cs (limited to 'Migrations/20230807001127_IndexPageDestination.cs') diff --git a/Migrations/20230807001127_IndexPageDestination.cs b/Migrations/20230807001127_IndexPageDestination.cs new file mode 100644 index 0000000..0564a5f --- /dev/null +++ b/Migrations/20230807001127_IndexPageDestination.cs @@ -0,0 +1,27 @@ +using Microsoft.EntityFrameworkCore.Migrations; + +#nullable disable + +namespace PagerParser.Migrations +{ + /// + public partial class IndexPageDestination : Migration + { + /// + protected override void Up(MigrationBuilder migrationBuilder) + { + migrationBuilder.CreateIndex( + name: "IX_ParsedPagerMessages_PageDestination", + table: "ParsedPagerMessages", + column: "PageDestination"); + } + + /// + protected override void Down(MigrationBuilder migrationBuilder) + { + migrationBuilder.DropIndex( + name: "IX_ParsedPagerMessages_PageDestination", + table: "ParsedPagerMessages"); + } + } +} -- cgit v1.3