As a developer, I would like to have the ability to store the time zone associated to my DateTime objects.
Currently, they look like this in the Alembic migrations:
sa.Column("created_at", sa.DateTime(), nullable=True),
But I would like to see:
sa.Column("created_at", sa.DateTime(timezone=True), nullable=True),
As a developer, I would like to have the ability to store the time zone associated to my
DateTimeobjects.Currently, they look like this in the Alembic migrations:
But I would like to see: