Sync CS db model

This commit is contained in:
Rory&
2026-01-11 16:39:22 +01:00
parent 49bb15051a
commit 989bb734cd
5 changed files with 43 additions and 16 deletions
+2 -5
View File
@@ -89,14 +89,14 @@ public partial class User
[Column("email", TypeName = "character varying")]
public string? Email { get; set; }
[Column("flags")]
[Column("flags", TypeName = "character varying")]
public ulong Flags { get; set; }
[Column("public_flags")]
public ulong PublicFlags { get; set; }
[Column("purchased_flags")]
public ulong PurchasedFlags { get; set; }
public long PurchasedFlags { get; set; }
[Column("premium_usage_flags")]
public int PremiumUsageFlags { get; set; }
@@ -110,9 +110,6 @@ public partial class User
[Column("fingerprints")]
public string Fingerprints { get; set; } = null!;
[Column("extended_settings")]
public string ExtendedSettings { get; set; } = null!;
[Column("settingsIndex")]
public int? SettingsIndex { get; set; }