Skip to content

Commit

Permalink
Fix column name for not null constraint (#15465)
Browse files Browse the repository at this point in the history
  • Loading branch information
egvimo authored Jun 30, 2021
1 parent 9d12776 commit edb5ddc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ if (hasFieldConstraint) { _%>
if (!relationshipData.nullable) {
_%>
<addNotNullConstraint tableName="<%= entityTableName %>"
columnName="<%= relationshipData.columnName %>"
columnName="<%= relationshipData.columnName %>_id"
columnDataType="<%= relationshipData.columnDataType %>"/>
<%_ }
} _%>
Expand Down

0 comments on commit edb5ddc

Please sign in to comment.