Skip to content

Commit

Permalink
Merge pull request #23 from hazendaz/master
Browse files Browse the repository at this point in the history
[enhance] Apply #5 - fixes #5
  • Loading branch information
hazendaz authored Nov 9, 2023
2 parents a940ca7 + b90a4c7 commit 7ec3dc8
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions migrate.xslt
Original file line number Diff line number Diff line change
Expand Up @@ -368,9 +368,14 @@
<xsl:if test="@property">
<xsl:attribute name="property"><xsl:value-of select="@property" /></xsl:attribute>
</xsl:if>
<xsl:if test="@column">
<xsl:attribute name="column"><xsl:value-of select="@column" /></xsl:attribute>
</xsl:if>
<xsl:choose>
<xsl:when test="@column">
<xsl:attribute name="column"><xsl:value-of select="@column" /></xsl:attribute>
</xsl:when>
<xsl:otherwise>
<xsl:attribute name="column"><xsl:value-of select="@property" /></xsl:attribute>
</xsl:otherwise>
</xsl:choose>
<xsl:if test="@javaType">
<xsl:attribute name="javaType"><xsl:value-of select="@javaType" /></xsl:attribute>
</xsl:if>
Expand Down

0 comments on commit 7ec3dc8

Please sign in to comment.