Bugfix null TOS

This commit is contained in:
2023-08-03 14:37:12 +01:00
parent 4c3e1aacb0
commit 52ce412491
4 changed files with 351 additions and 3 deletions

View File

@ -14,8 +14,7 @@ public class UserConfiguration : IEntityTypeConfiguration<User>
builder.Property(a => a.Balance)
.IsRequired();
builder.Property(a => a.TosAccepted)
.IsRequired();
builder.Property(a => a.TosAccepted);
builder.Property(a => a.Version)
.IsRowVersion();