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
I'm getting error: Unexpected keyword argument "astext_type" for "JSONB" in my alembic migrations on lines like: sa.Column("data", postgresql.JSONB(astext_type=sa.Text()), nullable=True),
Looking at the init function of the JSON class that JSONB inherits it has a keyword argument astext_type.
Can't find the init function for JSON/JSONB in this repo.
So, am I doing something wrong or is there something not implemented or whatnot?
Thanks!
The text was updated successfully, but these errors were encountered:
I'm getting
error: Unexpected keyword argument "astext_type" for "JSONB"
in my alembic migrations on lines like:sa.Column("data", postgresql.JSONB(astext_type=sa.Text()), nullable=True),
Looking at the init function of the JSON class that JSONB inherits it has a keyword argument astext_type.
Can't find the init function for JSON/JSONB in this repo.
So, am I doing something wrong or is there something not implemented or whatnot?
Thanks!
The text was updated successfully, but these errors were encountered: