INNER CODE UNIT · Python
show_heads
litestar-org/advanced-alchemy · advanced_alchemy/cli.py:310
def show_heads(bind_key: Optional[str], verbose: bool, resolve_dependencies: bool) -> None: # pyright: ignore[reportUnusedFunction]
"""Show current heads."""
from advanced_alchemy.alembic.commands import AlembicCommands
ctx = cast("click.Context", click.get_current_context())
console.rule("[yellow]Showing current heads[/]", align="left")
sqlalchemy_config = get_config_by_bind_key(ctx, bind_key)
alembic_commands = AlembicCommands(sqlalchemy_config=sqlalchemy_config)
alembic_commands.heads(verbose=verbose, resolve_dependencies=resolve_dependencies)
@database_group.command(
name="history",
help="List changeset scripts in chronological order",
)
@bind_key_option
@verbose_option
@click.option(
"--rev-range",