migration: añadido leido bit
This commit is contained in:
@@ -399,6 +399,7 @@ public partial class AlquilaFacilContext : DbContext
|
|||||||
entity.Property(e => e.Idpropiedad)
|
entity.Property(e => e.Idpropiedad)
|
||||||
.HasColumnType("int(11)")
|
.HasColumnType("int(11)")
|
||||||
.HasColumnName("idpropiedad");
|
.HasColumnName("idpropiedad");
|
||||||
|
entity.Property(e => e.Leido).HasColumnName("leido");
|
||||||
entity.Property(e => e.Mensaje)
|
entity.Property(e => e.Mensaje)
|
||||||
.HasMaxLength(255)
|
.HasMaxLength(255)
|
||||||
.HasColumnName("mensaje");
|
.HasColumnName("mensaje");
|
||||||
|
|||||||
@@ -17,6 +17,8 @@ public partial class Notificacione
|
|||||||
|
|
||||||
public int Idpropiedad { get; set; }
|
public int Idpropiedad { get; set; }
|
||||||
|
|
||||||
|
public bool Leido { get; set; }
|
||||||
|
|
||||||
public virtual Cliente DniclienteNavigation { get; set; } = null!;
|
public virtual Cliente DniclienteNavigation { get; set; } = null!;
|
||||||
|
|
||||||
public virtual Cliente DniremitenteNavigation { get; set; } = null!;
|
public virtual Cliente DniremitenteNavigation { get; set; } = null!;
|
||||||
|
|||||||
Reference in New Issue
Block a user