INNER CODE UNIT · Python
show_history
litestar-org/advanced-alchemy · advanced_alchemy/cli.py:338
def show_history( # pyright: ignore[reportUnusedFunction]
bind_key: Optional[str],
verbose: bool,
rev_range: Optional[str],
indicate_current: bool,
) -> None:
"""Show revision history."""
from advanced_alchemy.alembic.commands import AlembicCommands
ctx = cast("click.Context", click.get_current_context())
console.rule("[yellow]Showing revision history[/]", align="left")
sqlalchemy_config = get_config_by_bind_key(ctx, bind_key)
alembic_commands = AlembicCommands(sqlalchemy_config=sqlalchemy_config)
alembic_commands.history(
rev_range=rev_range,
verbose=verbose,
indicate_current=indicate_current,
)