Skip to content

Commit

Permalink
Fix Liquibase Changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
f11h committed Jan 12, 2022
1 parent 4cca7ae commit 7fa1b08
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public class TrustedPartyEntity {
@Enumerated(EnumType.STRING)
@ElementCollection(fetch = FetchType.EAGER)
@CollectionTable(name = "trusted_party_roles")
@Column(name = "role")
@Column(name = "role", length = 22, nullable = false)
List<CertificateRoles> certificateRoles;

public enum CertificateType {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@
<column name="trusted_party_entity_id" type="BIGINT">
<constraints nullable="false"/>
</column>
<column name="role" type="VARCHAR"/>
<column name="role" type="VARCHAR(22)">
<constraints nullable="false"/>
</column>
</createTable>

<addForeignKeyConstraint baseColumnNames="trusted_party_entity_id" baseTableName="trusted_party_roles"
Expand Down

0 comments on commit 7fa1b08

Please sign in to comment.