Update CS models, deps

This commit is contained in:
Rory&
2026-04-16 02:36:45 +02:00
parent b2990b5a2e
commit 7dcccdcd6c
121 changed files with 1004 additions and 854 deletions
@@ -10,8 +10,8 @@ namespace Spacebar.Models.Db.Models;
public partial class StickerPack
{
[Key]
[Column("id", TypeName = "character varying")]
public string Id { get; set; } = null!;
[Column("id")]
public long Id { get; set; }
[Column("name", TypeName = "character varying")]
public string Name { get; set; } = null!;
@@ -25,8 +25,8 @@ public partial class StickerPack
[Column("cover_sticker_id", TypeName = "character varying")]
public string? CoverStickerId { get; set; }
[Column("coverStickerId", TypeName = "character varying")]
public string? CoverStickerId1 { get; set; }
[Column("coverStickerId")]
public long? CoverStickerId1 { get; set; }
[ForeignKey("CoverStickerId1")]
[InverseProperty("StickerPacks")]