Postgresql – Why is migration thinking an entry exist on a recently created table?
I am currently trying to add an message column to my table which is modelled to look like this public class Notification { [Key] public Guid Id { get; set; } = Guid.NewGuid(); public string ActionType { get; set; }…