Skip to content

Commit 59ba8f6

Browse files
authored
Add extend_existing=True for Table
This it an attempt to fix running tests with sqlalchemy
1 parent 9fa0439 commit 59ba8f6

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

aidbox_python_sdk/db.py

+1
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@ def create_table(table_name):
6969
nullable=False,
7070
),
7171
Column("resource", _JSONB(astext_type=Text()), nullable=False, index=True),
72+
extend_existing=True
7273
)
7374

7475

0 commit comments

Comments
 (0)