Merge pull request #608 from btimo/fixSQLiteDdl

SQLite Ddl : autoincrement attribute
This commit is contained in:
Rob Bygrave
2016-03-21 10:14:05 +13:00
@@ -10,7 +10,7 @@ public class SQLiteDdl extends PlatformDdl {
public SQLiteDdl(DbTypeMap platformTypes, DbIdentity dbIdentity) {
super(platformTypes, dbIdentity);
this.identitySuffix = " autoincrement";
this.identitySuffix = "";
}
}