diff --git a/posthog/warehouse/models/table.py b/posthog/warehouse/models/table.py index 411bf459aa1ed..dcb1b2297216f 100644 --- a/posthog/warehouse/models/table.py +++ b/posthog/warehouse/models/table.py @@ -8,6 +8,7 @@ StringDatabaseField, IntegerDatabaseField, DateTimeDatabaseField, + DateDatabaseField, StringJSONDatabaseField, BooleanDatabaseField, StringArrayDatabaseField, @@ -20,6 +21,7 @@ "String": StringDatabaseField, "DateTime64": DateTimeDatabaseField, "DateTime32": DateTimeDatabaseField, + "Date": DateDatabaseField, "UInt8": IntegerDatabaseField, "UInt16": IntegerDatabaseField, "UInt32": IntegerDatabaseField,