summaryrefslogtreecommitdiff
path: root/alembic/operations/schemaobj.py
diff options
context:
space:
mode:
authorliverpool1026 <liverpool1026.bne@gmail.com>2021-10-08 05:46:58 +1000
committerGitHub <noreply@github.com>2021-10-07 21:46:58 +0200
commit9b01e5fa7178333f2e78ee0fc1322112307b51dd (patch)
treebb32cf481da888b390150768bcc5057423820215 /alembic/operations/schemaobj.py
parent277c9b88214fe3fcb5a8aa01717e1aa63ad9b887 (diff)
downloadalembic-9b01e5fa7178333f2e78ee0fc1322112307b51dd.tar.gz
Fix issue 928 create_check_constraint condition argument typing fix (#929)master
* Update create_check_constraint method typing * Pass str type down Fixes: #928 Co-authored-by: Kevin Hwa <liverpoo1026.bne@gmail.com> Co-authored-by: Kevin Hwa <kevin.hwa@polymathian.com>
Diffstat (limited to 'alembic/operations/schemaobj.py')
-rw-r--r--alembic/operations/schemaobj.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/alembic/operations/schemaobj.py b/alembic/operations/schemaobj.py
index 0d40dc7..3bff508 100644
--- a/alembic/operations/schemaobj.py
+++ b/alembic/operations/schemaobj.py
@@ -137,7 +137,7 @@ class SchemaObjects:
self,
name: Optional[str],
source: str,
- condition: Union["TextClause", "ColumnElement[Any]"],
+ condition: Union[str, "TextClause", "ColumnElement[Any]"],
schema: Optional[str] = None,
**kw
) -> Union["CheckConstraint"]: