1
0
mirror of https://github.com/bitwarden/server synced 2025-12-30 23:23:37 +00:00

recreate ef migrations

This commit is contained in:
Matt Gibson
2025-11-17 17:19:53 -08:00
parent 1ebfac18a2
commit d6eaafb308
13 changed files with 233 additions and 300 deletions

View File

@@ -40,7 +40,7 @@ public class PlayDataEntityTypeConfiguration : IEntityTypeConfiguration<PlayData
.ToTable(nameof(PlayData))
.HasCheckConstraint(
"CK_PlayData_UserOrOrganization",
"([UserId] IS NOT NULL AND [OrganizationId] IS NULL) OR ([UserId] IS NULL AND [OrganizationId] IS NOT NULL)"
"(\"UserId\" IS NOT NULL AND \"OrganizationId\" IS NULL) OR (\"UserId\" IS NULL AND \"OrganizationId\" IS NOT NULL)"
);
}
}