You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Jetadmin correctly recognises SQLite DATE field as date and offers a calendar as means to fill the field. Yet, when I click the add button I get an error message stating that there is some incompatibility between SQLite DATE field and Python datetime object.
I solved a problem by adding the {'query': 'DATE', 'operator': 'startswith', 'date_type': fields.DateTimeField},
to the data_types list in jet-bridge/packages/jet_bridge_base/jet_bridge_base/serializers/model_serializer.py
Can you please patch the package?
The text was updated successfully, but these errors were encountered:
Jetadmin correctly recognises SQLite DATE field as date and offers a calendar as means to fill the field. Yet, when I click the add button I get an error message stating that there is some incompatibility between SQLite DATE field and Python datetime object.
I solved a problem by adding the
{'query': 'DATE', 'operator': 'startswith', 'date_type': fields.DateTimeField},
to the
data_types
list injet-bridge/packages/jet_bridge_base/jet_bridge_base/serializers/model_serializer.py
Can you please patch the package?
The text was updated successfully, but these errors were encountered: