diff options
author | Mike Bayer <mike_mp@zzzcomputing.com> | 2023-02-13 09:00:29 -0500 |
---|---|---|
committer | Mike Bayer <mike_mp@zzzcomputing.com> | 2023-02-13 09:00:29 -0500 |
commit | cdc68e3ca75c3dbc346a60ed7988dd821108cdcd (patch) | |
tree | 650017a0853aaa01208d34981abe7a336a8e630f /alembic/operations | |
parent | 679555c53d9a0ff7ec3664e73871e380d77ae023 (diff) | |
download | alembic-cdc68e3ca75c3dbc346a60ed7988dd821108cdcd.tar.gz |
use correct param name
Change-Id: I2981335a5deaa798195cfe70f3655d79cd4d8a3b
Diffstat (limited to 'alembic/operations')
-rw-r--r-- | alembic/operations/ops.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/alembic/operations/ops.py b/alembic/operations/ops.py index a93596d..808d1fb 100644 --- a/alembic/operations/ops.py +++ b/alembic/operations/ops.py @@ -1912,7 +1912,7 @@ class AlterColumnOp(AlterTableOp): .. versionadded:: 1.4.0 - :param insert_before: String name of an existing column which this + :param insert_after: String name of an existing column which this column should be placed after, when creating the new table. If both :paramref:`.BatchOperations.alter_column.insert_before` and :paramref:`.BatchOperations.alter_column.insert_after` are |