Skip to content

Commit

Permalink
add index
Browse files Browse the repository at this point in the history
  • Loading branch information
oskogstad committed Mar 4, 2025
1 parent 0f2d557 commit 2f2dfcf
Show file tree
Hide file tree
Showing 4 changed files with 2,273 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ public void Configure(EntityTypeBuilder<DialogEntity> builder)
builder.HasIndex(x => x.CreatedAt);
builder.HasIndex(x => x.DueAt);
builder.HasIndex(x => x.UpdatedAt);
builder.HasIndex(x => x.ExternalReference);
builder.Property(x => x.Org).UseCollation("C");
builder.Property(x => x.ServiceResource).UseCollation("C");
builder.Property(x => x.Party).UseCollation("C");
Expand Down
Loading

0 comments on commit 2f2dfcf

Please sign in to comment.