Fixed API test cases.

This commit is contained in:
Akshay Joshi
2022-10-20 17:47:27 +05:30
parent db5e181b4f
commit 964c7b1d28
5 changed files with 17 additions and 5 deletions

View File

@@ -28,7 +28,7 @@ def upgrade():
with op.batch_alter_table("user") as batch_op:
batch_op.create_check_constraint(
"ck_active_range",
"active IN (true, false)"
"active IN (0, 1)"
)