-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
942e47d
commit c5089f1
Showing
5 changed files
with
71 additions
and
7 deletions.
There are no files selected for viewing
68 changes: 68 additions & 0 deletions
68
backend/alembic/versions/26b931506ecb_default_chosen_assistants_to_none.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,68 @@ | ||
"""default chosen assistants to none | ||
Revision ID: 26b931506ecb | ||
Revises: c0fd6e4da83a | ||
Create Date: 2024-11-12 13:23:29.858995 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.dialects import postgresql | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "26b931506ecb" | ||
down_revision = "c0fd6e4da83a" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade(): | ||
op.add_column( | ||
"user", sa.Column("chosen_assistants_new", postgresql.JSONB(), nullable=True) | ||
) | ||
|
||
op.execute( | ||
""" | ||
UPDATE "user" | ||
SET chosen_assistants_new = | ||
CASE | ||
WHEN chosen_assistants = '[-2, -1, 0]' THEN NULL | ||
ELSE chosen_assistants | ||
END | ||
""" | ||
) | ||
|
||
op.drop_column("user", "chosen_assistants") | ||
|
||
op.alter_column( | ||
"user", "chosen_assistants_new", new_column_name="chosen_assistants" | ||
) | ||
|
||
|
||
def downgrade(): | ||
op.add_column( | ||
"user", | ||
sa.Column( | ||
"chosen_assistants_old", | ||
postgresql.JSONB(), | ||
nullable=False, | ||
server_default="[-2, -1, 0]", | ||
), | ||
) | ||
|
||
op.execute( | ||
""" | ||
UPDATE "user" | ||
SET chosen_assistants_old = | ||
CASE | ||
WHEN chosen_assistants IS NULL THEN '[-2, -1, 0]'::jsonb | ||
ELSE chosen_assistants | ||
END | ||
""" | ||
) | ||
|
||
op.drop_column("user", "chosen_assistants") | ||
|
||
op.alter_column( | ||
"user", "chosen_assistants_old", new_column_name="chosen_assistants" | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters