1
0
mirror of https://github.com/bitwarden/server synced 2025-12-14 07:13:39 +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

@@ -1658,7 +1658,7 @@ namespace Bit.PostgresMigrations.Migrations
b.ToTable("PlayData", null, t =>
{
t.HasCheckConstraint("CK_PlayData_UserOrOrganization", "([UserId] IS NOT NULL AND [OrganizationId] IS NULL) OR ([UserId] IS NULL AND [OrganizationId] IS NOT NULL)");
t.HasCheckConstraint("CK_PlayData_UserOrOrganization", "(\"UserId\" IS NOT NULL AND \"OrganizationId\" IS NULL) OR (\"UserId\" IS NULL AND \"OrganizationId\" IS NOT NULL)");
});
});