Skip to content

Commit

Permalink
Убрать неиспользуемый индекс (#2920)
Browse files Browse the repository at this point in the history
  • Loading branch information
leotsarev authored Nov 21, 2024
1 parent be7391a commit 2e1a779
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
namespace JoinRpg.Dal.Impl.Migrations
{
using System;
using System.Data.Entity.Migrations;

public partial class RemoveGroupClaims : DbMigration
Expand All @@ -10,6 +9,7 @@ public override void Up()
DropForeignKey("dbo.Claims", "CharacterGroupId", "dbo.CharacterGroups");
DropIndex("dbo.Claims", new[] { "CharacterId" });
DropIndex("dbo.Claims", new[] { "CharacterGroupId" });
DropIndex("dbo.Claims", "nci_wi_Claims_DD27A24D517BFF9AFEC7C6C5C8FCCA84");
AlterColumn("dbo.Claims", "CharacterId", c => c.Int(nullable: false));
CreateIndex("dbo.Claims", "CharacterId");
DropColumn("dbo.Claims", "CharacterGroupId");
Expand Down

0 comments on commit 2e1a779

Please sign in to comment.