We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3bdd3dd commit 5bdeef7Copy full SHA for 5bdeef7
server/migrations/community/d02961c7416c_add_project_member_table.py
@@ -18,6 +18,9 @@
18
19
20
def upgrade():
21
+ conn = op.get_bind()
22
+ conn.execute(sa.text("CREATE EXTENSION IF NOT EXISTS intarray;"))
23
+
24
op.create_table(
25
"project_member",
26
sa.Column("project_id", postgresql.UUID(as_uuid=True), nullable=False),
@@ -50,6 +53,7 @@ def upgrade():
50
53
data_upgrade()
51
54
52
55
op.drop_table("project_access")
56
+ conn.execute(sa.text("DROP EXTENSION IF EXISTS intarray;"))
57
58
59
def downgrade():
0 commit comments