Skip to content

Commit

Permalink
chore(data-warehouse): add missing date type (#17407)
Browse files Browse the repository at this point in the history
add missing date type
  • Loading branch information
EDsCODE authored Sep 12, 2023
1 parent 5003faf commit 9925638
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions posthog/warehouse/models/table.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
StringDatabaseField,
IntegerDatabaseField,
DateTimeDatabaseField,
DateDatabaseField,
StringJSONDatabaseField,
BooleanDatabaseField,
StringArrayDatabaseField,
Expand All @@ -20,6 +21,7 @@
"String": StringDatabaseField,
"DateTime64": DateTimeDatabaseField,
"DateTime32": DateTimeDatabaseField,
"Date": DateDatabaseField,
"UInt8": IntegerDatabaseField,
"UInt16": IntegerDatabaseField,
"UInt32": IntegerDatabaseField,
Expand Down

0 comments on commit 9925638

Please sign in to comment.