I am using SQLAlchemy and sqlalchemy-migrate for my project.
Now, I want to add a column to already created table, and I want that column to be at a specific position in the table. What I basically want, is to use:
ALTER table table_name add column column_name2 integer AFTER column_name1
but using sqlalchemy-migrate API.
I tried to search documentation and read sources, but got no result.
Does this functionality even exist, and if so, how can it be used?