migracion: urlrecibo
This commit is contained in:
@@ -670,6 +670,9 @@ public partial class AlquilaFacilContext : DbContext
|
||||
entity.Property(e => e.Monto)
|
||||
.HasPrecision(12)
|
||||
.HasColumnName("monto");
|
||||
entity.Property(e => e.UrlRecibo)
|
||||
.HasColumnType("text")
|
||||
.HasColumnName("urlRecibo");
|
||||
|
||||
entity.HasOne(d => d.IdCompradorNavigation).WithMany(p => p.VentaIdCompradorNavigations)
|
||||
.HasForeignKey(d => d.IdComprador)
|
||||
|
||||
@@ -23,6 +23,8 @@ public partial class Venta
|
||||
|
||||
public int Iddivisa { get; set; }
|
||||
|
||||
public string? UrlRecibo { get; set; }
|
||||
|
||||
public virtual ICollection<Contrato> Contratos { get; set; } = new List<Contrato>();
|
||||
|
||||
public virtual Cliente? IdCompradorNavigation { get; set; }
|
||||
|
||||
Reference in New Issue
Block a user