diff options
author | Ondrej Zara <ondrej.zara@firma.seznam.cz> | 2015-05-05 15:30:02 +0200 |
---|---|---|
committer | Ondrej Zara <ondrej.zara@firma.seznam.cz> | 2015-05-05 15:30:02 +0200 |
commit | c831747a411fbd7b59957d2cdf1943db53394ee8 (patch) | |
tree | e47b95a41225b5e90ec0554934858694581d5089 | |
parent | 9815a3ba73fe016be28c29df21b80d23ec51240e (diff) | |
download | wwwsqldesigner-c831747a411fbd7b59957d2cdf1943db53394ee8.zip wwwsqldesigner-c831747a411fbd7b59957d2cdf1943db53394ee8.tar.gz wwwsqldesigner-c831747a411fbd7b59957d2cdf1943db53394ee8.tar.bz2 |
removed oracle autoincrement until a better solution is implemented
-rw-r--r-- | db/oracle/output.xsl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/db/oracle/output.xsl b/db/oracle/output.xsl index 0e62367..0217256 100644 --- a/db/oracle/output.xsl +++ b/db/oracle/output.xsl @@ -42,10 +42,12 @@ <xsl:if test="@null = 0"> <xsl:text>NOT NULL </xsl:text> </xsl:if> - + + <!-- needs to be fixed using sequences <xsl:if test="@autoincrement = 1"> <xsl:text>AUTO_INCREMENT </xsl:text> </xsl:if> + --> <xsl:if test="default"> <xsl:text>DEFAULT </xsl:text> |