Skip to content

Commit

Permalink
Add future prove args
Browse files Browse the repository at this point in the history
  • Loading branch information
maver1ck committed Oct 31, 2024
1 parent f0afc12 commit d5b8196
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion alembic/ddl/impl.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ def static_output(self, text: str) -> None:
self.output_buffer.flush()

def version_table_impl(
self, version_table, version_table_schema, version_table_pk
self, *, version_table, version_table_schema, version_table_pk, **kw
) -> Table:
"""create the Table object for the version_table.
Expand Down
6 changes: 3 additions & 3 deletions alembic/runtime/migration.py
Original file line number Diff line number Diff line change
Expand Up @@ -199,9 +199,9 @@ def __init__(
)

self._version = self.impl.version_table_impl(
version_table,
version_table_schema,
opts.get("version_table_pk", True),
version_table=version_table,
version_table_schema=version_table_schema,
version_table_pk=opts.get("version_table_pk", True),
)

log.info("Context impl %s.", self.impl.__class__.__name__)
Expand Down

0 comments on commit d5b8196

Please sign in to comment.