Skip to content

Commit

Permalink
Merge branch '3.8' of https://github.com/JumpMind/symmetric-ds.git in…
Browse files Browse the repository at this point in the history
…to 3.8
  • Loading branch information
chenson42 committed Apr 29, 2017
2 parents 88845a5 + 2f18be8 commit 4da6bc0
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -320,7 +320,7 @@ protected String getSqlType(Column column) {
sqlType = "BIGINT";
}
if (column.getMappedTypeCode() == Types.TIMESTAMP && column.getScale() > 0) {
sqlType = "TIMESTAMP(" + column.getScale() + ")";
sqlType = "DATETIME(" + column.getScale() + ")";
}
return sqlType;
}
Expand Down

0 comments on commit 4da6bc0

Please sign in to comment.