Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
Fix SQLite datetime handling regression bug
  • Loading branch information
emiliom committed Apr 16, 2019
commit 0b0f9aba6eba65529b84675dfcda5b97593b0d29
2 changes: 1 addition & 1 deletion odm2api/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
BigIntegerType = BigIntegerType.with_variant(mysql.BIGINT(), 'mysql')

DateTimeType = DateTime()
DateTimeType = DateTimeType.with_variant(sqlite.INTEGER(), 'sqlite')
DateTimeType = DateTimeType.with_variant(sqlite.DATETIME(), 'sqlite')


def is_hex(s):
Expand Down