Thank you @MatsLindh
This solution is working for me
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()
from . import users # IMPORTANT: intended to register models for alembic (should be at the end of the file)
But it looks ugly (import at the last line)
What is the best practise to link models description and alembic?