RED-5624: Refactoring of justifications

added field for technical name to EntityLogLegalBasis
This commit is contained in:
yhampe 2024-08-06 12:51:14 +02:00
parent bbaaa6f952
commit 801dc52cd2
3 changed files with 5 additions and 2 deletions

View File

@ -216,4 +216,6 @@ databaseChangeLog:
- include:
file: db/changelog/tenant/131-changed-max-size-for-id-in-entity.yaml
- include:
file: db/changelog/tenant/132-add-based-on-dict-annotation-id-to-manual_changes.yaml
file: db/changelog/tenant/132-add-based-on-dict-annotation-id-to-manual_changes.yaml
- include:
file: db/changelog/tenant/133-add-technical-name-to-legal_basis.yaml

View File

@ -8,4 +8,4 @@ databaseChangeLog:
- column:
name: technicalName
type: VARCHAR(255)
tableName: legal_basis
tableName: legal_basis_mapping_entity_legal_basis

View File

@ -12,5 +12,6 @@ public class EntityLogLegalBasis {
private String name;
private String description;
private String reason;
private String technicalName;
}