refactor(Annotation): change Id column type from int to bigint in Annotation entity

This commit is contained in:
tekh 2025-10-21 11:45:23 +02:00
parent 8ae0f79365
commit 911c812b19

View File

@ -16,7 +16,7 @@ public class Annotation
{
[Key]
[DatabaseGenerated(DatabaseGeneratedOption.Identity)]
[Column("GUID", TypeName = "int")]
[Column("GUID", TypeName = "bigint")]
public long Id { get; set; }
[Required]