migration: añadido leido bit

This commit is contained in:
2025-01-05 17:48:54 -03:00
parent bd9ac6db0b
commit b176ee64b2
2 changed files with 3 additions and 0 deletions

View File

@@ -399,6 +399,7 @@ public partial class AlquilaFacilContext : DbContext
entity.Property(e => e.Idpropiedad)
.HasColumnType("int(11)")
.HasColumnName("idpropiedad");
entity.Property(e => e.Leido).HasColumnName("leido");
entity.Property(e => e.Mensaje)
.HasMaxLength(255)
.HasColumnName("mensaje");

View File

@@ -17,6 +17,8 @@ public partial class Notificacione
public int Idpropiedad { get; set; }
public bool Leido { get; set; }
public virtual Cliente DniclienteNavigation { get; set; } = null!;
public virtual Cliente DniremitenteNavigation { get; set; } = null!;