-
Notifications
You must be signed in to change notification settings - Fork 69
Datetime or Time Format #86
Copy link
Copy link
Open
Description
Serialization not working to field type DateTime or Time.
class StoreOpeningHour(BaseModel):
__tablename__ = 'stores_opening_hours'
id = Column(Integer, primary_key=True, autoincrement=True)
day = Column(Integer, index=True)
hour_open = Column(Time, index=True)
hour_close = Column(Time, index=True)
status = Column(Boolean, default=True)
store_id = Column(Integer, ForeignKey('stores.id'))
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels

