Skip to content

Commit 334f660

Browse files
authored
Merge pull request #169 from emiliom/bugfix_sqlitets
Fix SQLite Result ValueDateTime data-type regression bug and related test populated.sql db errors
2 parents de5a61c + e2f42eb commit 334f660

File tree

3 files changed

+4197
-4195
lines changed

3 files changed

+4197
-4195
lines changed

odm2api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
BigIntegerType = BigIntegerType.with_variant(mysql.BIGINT(), 'mysql')
1515

1616
DateTimeType = DateTime()
17-
DateTimeType = DateTimeType.with_variant(sqlite.INTEGER(), 'sqlite')
17+
DateTimeType = DateTimeType.with_variant(sqlite.DATETIME(), 'sqlite')
1818

1919

2020
def is_hex(s):

0 commit comments

Comments
 (0)