aumentada la cantidad de caracteres en la descripcion
This commit is contained in:
@@ -271,7 +271,7 @@ public partial class AlquilaFacilContext : DbContext
|
|||||||
.HasPrecision(12)
|
.HasPrecision(12)
|
||||||
.HasColumnName("costo");
|
.HasColumnName("costo");
|
||||||
entity.Property(e => e.Descripcion)
|
entity.Property(e => e.Descripcion)
|
||||||
.HasMaxLength(40)
|
.HasMaxLength(100)
|
||||||
.HasColumnName("descripcion");
|
.HasColumnName("descripcion");
|
||||||
entity.Property(e => e.Idcontrato)
|
entity.Property(e => e.Idcontrato)
|
||||||
.HasColumnType("bigint(20)")
|
.HasColumnType("bigint(20)")
|
||||||
|
|||||||
@@ -8,7 +8,7 @@ public partial class Permiso
|
|||||||
{
|
{
|
||||||
public int Id { get; set; }
|
public int Id { get; set; }
|
||||||
|
|
||||||
public string? Descripcion { get; set; }
|
public string Descripcion { get; set; } = null!;
|
||||||
|
|
||||||
[JsonIgnore]
|
[JsonIgnore]
|
||||||
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
|
public virtual ICollection<Grupo> Idgrupos { get; set; } = new List<Grupo>();
|
||||||
|
|||||||
Reference in New Issue
Block a user