1
0
mirror of https://github.com/bitwarden/server.git synced 2025-02-16 01:51:21 +01:00

Remove unnecessary identity column indication (#3830)

This commit is contained in:
Matt Bishop 2024-02-20 11:42:52 -05:00 committed by GitHub
parent 9720d18a0a
commit af56ab4159
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -13,10 +13,6 @@ public class GrantEntityTypeConfiguration : IEntityTypeConfiguration<Grant>
.HasName("PK_Grant")
.IsClustered();
builder
.Property(s => s.Id)
.UseIdentityColumn();
builder
.HasIndex(s => s.Key)
.IsUnique(true);