Skip to content

Commit f379fe7

Browse files
committed
fix migration
Signed-off-by: Neil South <neil.south@answerdigital.com>
1 parent 150ef94 commit f379fe7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Database/EntityFramework/Migrations/20240112151448_ApplicationEntityTweek.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,15 @@ public partial class ApplicationEntityTweek : Migration
99
protected override void Up(MigrationBuilder migrationBuilder)
1010
{
1111
migrationBuilder.DropIndex(
12-
name: "idx_source_all1",
12+
name: "idx_source_all_hl7",
1313
table: "HL7DestinationEntities");
1414

1515
migrationBuilder.DropColumn(
1616
name: "AeTitle",
1717
table: "HL7DestinationEntities");
1818

1919
migrationBuilder.CreateIndex(
20-
name: "idx_source_all1",
20+
name: "idx_source_all_hl7",
2121
table: "HL7DestinationEntities",
2222
columns: new[] { "Name", "HostIp", "Port" },
2323
unique: true);
@@ -26,7 +26,7 @@ protected override void Up(MigrationBuilder migrationBuilder)
2626
protected override void Down(MigrationBuilder migrationBuilder)
2727
{
2828
migrationBuilder.DropIndex(
29-
name: "idx_source_all1",
29+
name: "idx_source_all_hl7",
3030
table: "HL7DestinationEntities");
3131

3232
migrationBuilder.AddColumn<string>(
@@ -37,7 +37,7 @@ protected override void Down(MigrationBuilder migrationBuilder)
3737
defaultValue: "");
3838

3939
migrationBuilder.CreateIndex(
40-
name: "idx_source_all1",
40+
name: "idx_source_all_hl7",
4141
table: "HL7DestinationEntities",
4242
columns: new[] { "Name", "AeTitle", "HostIp", "Port" },
4343
unique: true);

0 commit comments

Comments
 (0)