We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a940ca7 + b90a4c7 commit 7ec3dc8Copy full SHA for 7ec3dc8
migrate.xslt
@@ -368,9 +368,14 @@
368
<xsl:if test="@property">
369
<xsl:attribute name="property"><xsl:value-of select="@property" /></xsl:attribute>
370
</xsl:if>
371
- <xsl:if test="@column">
372
- <xsl:attribute name="column"><xsl:value-of select="@column" /></xsl:attribute>
373
- </xsl:if>
+ <xsl:choose>
+ <xsl:when test="@column">
+ <xsl:attribute name="column"><xsl:value-of select="@column" /></xsl:attribute>
374
+ </xsl:when>
375
+ <xsl:otherwise>
376
+ <xsl:attribute name="column"><xsl:value-of select="@property" /></xsl:attribute>
377
+ </xsl:otherwise>
378
+ </xsl:choose>
379
<xsl:if test="@javaType">
380
<xsl:attribute name="javaType"><xsl:value-of select="@javaType" /></xsl:attribute>
381
0 commit comments