Skip to content

Commit 8dbda79

Browse files
Incognito mode to conversations (#355)
* Incognito mode to conversations * Filters for incognito in admin queries * Conflicts * submodules merge
1 parent 1eeca98 commit 8dbda79

File tree

2 files changed

+29
-1
lines changed

2 files changed

+29
-1
lines changed
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
"""Added incognito mode to conversations
2+
3+
Revision ID: 059f0d62a6b9
4+
Revises: 24ca8432bd8b
5+
Create Date: 2025-10-15 14:17:59.216693
6+
7+
"""
8+
from alembic import op
9+
import sqlalchemy as sa
10+
11+
12+
# revision identifiers, used by Alembic.
13+
revision = '059f0d62a6b9'
14+
down_revision = '24ca8432bd8b'
15+
branch_labels = None
16+
depends_on = None
17+
18+
19+
def upgrade():
20+
# ### commands auto generated by Alembic - please adjust! ###
21+
op.add_column('conversation', sa.Column('incognito_mode', sa.Boolean(), nullable=True), schema='cognition')
22+
# ### end Alembic commands ###
23+
24+
25+
def downgrade():
26+
# ### commands auto generated by Alembic - please adjust! ###
27+
op.drop_column('conversation', 'incognito_mode', schema='cognition')
28+
# ### end Alembic commands ###

0 commit comments

Comments
 (0)