Se agrega UUID a los modelos USUARIO,PERFILPORUSUARIO y ModelContext

This commit is contained in:
Jhonatan Pelaez 2023-09-21 15:09:24 -05:00
parent e7bb41e42a
commit 0ccd94d350
3 changed files with 6 additions and 0 deletions

View File

@ -85,6 +85,8 @@ namespace MSAdminUsuarios.Context
entity.ToTable("PERFILESPORUSUARIO");
entity.Property(e => e.TX_UUID_PFLXUSU).HasMaxLength(40);
});
modelBuilder.Entity<USUARIO>(entity =>
@ -95,6 +97,8 @@ namespace MSAdminUsuarios.Context
entity.ToTable("USUARIOSMS");
entity.Property(e => e.CL_FIRMA_USUMS).HasColumnType("CLOB");
entity.Property(e => e.TX_UUID_USUMS).HasMaxLength(40);
});
modelBuilder.Entity<CORREOSAREAMS>(entity =>

View File

@ -9,6 +9,7 @@ namespace MSAdminUsuarios.Context
public string? TX_FKDOC_USUMS { get; set; }
public int? NU_FK_PFL { get; set; }
public int? BL_ESTADO_PFLXUSU { get; set; } = 1;
public string? TX_UUID_PFLXUSU { get; set; }
}
}

View File

@ -30,5 +30,6 @@ namespace MSAdminUsuarios.Context
public int? NU_MODALIDADCTT_USUMS { get; set; }
public string? TX_SEDES_USUMS { get; set; }
public int? NU_BLOQUEO_USUMS { get; set; } = 1;
public string? TX_UUID_USUMS { get; set; }
}
}