From 842502e82c4ddfea05a5f77c361aaa27f75afc42 Mon Sep 17 00:00:00 2001 From: ivar Date: Sun, 26 Oct 2025 22:57:28 +0100 Subject: Refactor db schema and add audits --- api/WhatApi/Tables/Place.cs | 22 ++++++++++++++++++---- 1 file changed, 18 insertions(+), 4 deletions(-) (limited to 'api/WhatApi/Tables/Place.cs') diff --git a/api/WhatApi/Tables/Place.cs b/api/WhatApi/Tables/Place.cs index ff95c96..abbd71a 100644 --- a/api/WhatApi/Tables/Place.cs +++ b/api/WhatApi/Tables/Place.cs @@ -1,11 +1,25 @@ -using NetTopologySuite.Geometries; - namespace WhatApi.Tables; -public class Place +public class Place : IAuditableEntity { public Guid Id { get; set; } public Guid ContentId { get; set; } - public Content Content { get; set; } + public Content Content { get; set; } = null!; public required Point Location { get; set; } + public DateTimeOffset CreatedAtUtc { get; set; } + public DateTimeOffset? UpdatedAtUtc { get; set; } + public Guid CreatedBy { get; set; } + public Guid? UpdatedBy { get; set; } +} + +public class PlaceConfiguration : IEntityTypeConfiguration +{ + public void Configure(EntityTypeBuilder builder) { + builder.ToTable("place"); + builder.HasKey(x => x.Id); + builder.Property(x => x.Location).IsRequired(); + builder.HasOne(x => x.Content); + builder.Property(x => x.Location).HasColumnType($"geometry(point,{Constants.Wgs84SpatialReferenceId})"); + builder.HasIndex(x => x.Location).HasMethod("gist"); + } } \ No newline at end of file -- cgit v1.3