Skip to content

Commit c1d6545

Browse files
Ory Hydra: Microsoft Copilot (#392)
* chore: update submodules * perf: add microsoft copilot to cognition * chore: update submodules * chore: update submodules
1 parent a9142b8 commit c1d6545

File tree

2 files changed

+34
-1
lines changed

2 files changed

+34
-1
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
"""adds allow_microsoft_copilot_connection
2+
3+
Revision ID: e08f38f06e98
4+
Revises: 1133d27823e3
5+
Create Date: 2026-02-26 09:48:58.048211
6+
7+
"""
8+
9+
from alembic import op
10+
import sqlalchemy as sa
11+
12+
13+
# revision identifiers, used by Alembic.
14+
revision = "e08f38f06e98"
15+
down_revision = "1133d27823e3"
16+
branch_labels = None
17+
depends_on = None
18+
19+
20+
def upgrade():
21+
# ### commands auto generated by Alembic - please adjust! ###
22+
op.add_column(
23+
"project",
24+
sa.Column("allow_microsoft_copilot_connection", sa.Boolean(), nullable=True),
25+
schema="cognition",
26+
)
27+
# ### end Alembic commands ###
28+
29+
30+
def downgrade():
31+
# ### commands auto generated by Alembic - please adjust! ###
32+
op.drop_column("project", "allow_microsoft_copilot_connection", schema="cognition")
33+
# ### end Alembic commands ###

submodules/model

0 commit comments

Comments
 (0)