Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion alembic/op.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ def add_column(

.. note::

Not all contraint types may be indicated with this directive.
Not all constraint types may be indicated with this directive.
NOT NULL, FOREIGN KEY, and CHECK are honored, PRIMARY KEY
is conditionally honored, UNIQUE
is currently not.
Expand Down
2 changes: 1 addition & 1 deletion alembic/operations/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -652,7 +652,7 @@ def add_column(
.. note::
Not all contraint types may be indicated with this directive.
Not all constraint types may be indicated with this directive.
NOT NULL, FOREIGN KEY, and CHECK are honored, PRIMARY KEY
is conditionally honored, UNIQUE
is currently not.
Expand Down
2 changes: 1 addition & 1 deletion alembic/operations/ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -2123,7 +2123,7 @@ def add_column(
.. note::
Not all contraint types may be indicated with this directive.
Not all constraint types may be indicated with this directive.
NOT NULL, FOREIGN KEY, and CHECK are honored, PRIMARY KEY
is conditionally honored, UNIQUE
is currently not.
Expand Down
4 changes: 2 additions & 2 deletions alembic/util/langhelpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@ class DispatchPriority(enum.IntEnum):
"""

FIRST = 50
"""Run the funciton in the first batch of functions (highest priority)"""
"""Run the function in the first batch of functions (highest priority)"""

MEDIUM = 25
"""Run the function at normal priority (this is the default)"""
Expand Down Expand Up @@ -354,7 +354,7 @@ def branch(self) -> Dispatcher:


class PriorityDispatcher:
"""registers lists of functions at multiple levels of priorty and provides
"""registers lists of functions at multiple levels of priority and provides
a target to invoke them in priority order.

.. versionadded:: 1.18.0 - PriorityDispatcher replaces the job
Expand Down
Loading