In old version of sqlalchemy, that don't have Computed or Identity a fallback in alembic is used.
The current fallback is to set these values to type(None)
This causes issues since checks like isinstance(something, Computed) will pass when something is None, leading to attribute errors.
In old version of sqlalchemy, that don't have Computed or Identity a fallback in alembic is used.
The current fallback is to set these values to
type(None)This causes issues since checks like
isinstance(something, Computed)will pass when something isNone, leading to attribute errors.