-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add new ux * quick nit * additional nit * finalize * quick fix * fix typing
- Loading branch information
Showing
163 changed files
with
9,720 additions
and
4,375 deletions.
There are no files selected for viewing
29 changes: 29 additions & 0 deletions
29
backend/alembic/versions/027381bce97c_add_shortcut_option_for_users.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,29 @@ | ||
"""add shortcut option for users | ||
Revision ID: 027381bce97c | ||
Revises: 6fc7886d665d | ||
Create Date: 2025-01-14 12:14:00.814390 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = "027381bce97c" | ||
down_revision = "6fc7886d665d" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
op.add_column( | ||
"user", | ||
sa.Column( | ||
"shortcut_enabled", sa.Boolean(), nullable=False, server_default="false" | ||
), | ||
) | ||
|
||
|
||
def downgrade() -> None: | ||
op.drop_column("user", "shortcut_enabled") |
59 changes: 59 additions & 0 deletions
59
backend/alembic/versions/3c6531f32351_add_back_input_prompts.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,59 @@ | ||
"""add back input prompts | ||
Revision ID: 3c6531f32351 | ||
Revises: aeda5f2df4f6 | ||
Create Date: 2025-01-13 12:49:51.705235 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
import fastapi_users_db_sqlalchemy | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "3c6531f32351" | ||
down_revision = "aeda5f2df4f6" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
op.create_table( | ||
"inputprompt", | ||
sa.Column("id", sa.Integer(), autoincrement=True, nullable=False), | ||
sa.Column("prompt", sa.String(), nullable=False), | ||
sa.Column("content", sa.String(), nullable=False), | ||
sa.Column("active", sa.Boolean(), nullable=False), | ||
sa.Column("is_public", sa.Boolean(), nullable=False), | ||
sa.Column( | ||
"user_id", | ||
fastapi_users_db_sqlalchemy.generics.GUID(), | ||
nullable=True, | ||
), | ||
sa.ForeignKeyConstraint( | ||
["user_id"], | ||
["user.id"], | ||
), | ||
sa.PrimaryKeyConstraint("id"), | ||
) | ||
op.create_table( | ||
"inputprompt__user", | ||
sa.Column("input_prompt_id", sa.Integer(), nullable=False), | ||
sa.Column( | ||
"user_id", fastapi_users_db_sqlalchemy.generics.GUID(), nullable=False | ||
), | ||
sa.Column("disabled", sa.Boolean(), nullable=False, default=False), | ||
sa.ForeignKeyConstraint( | ||
["input_prompt_id"], | ||
["inputprompt.id"], | ||
), | ||
sa.ForeignKeyConstraint( | ||
["user_id"], | ||
["user.id"], | ||
), | ||
sa.PrimaryKeyConstraint("input_prompt_id", "user_id"), | ||
) | ||
|
||
|
||
def downgrade() -> None: | ||
op.drop_table("inputprompt__user") | ||
op.drop_table("inputprompt") |
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
80 changes: 80 additions & 0 deletions
80
backend/alembic/versions/6fc7886d665d_make_categories_labels_and_many_to_many.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,80 @@ | ||
"""make categories labels and many to many | ||
Revision ID: 6fc7886d665d | ||
Revises: 3c6531f32351 | ||
Create Date: 2025-01-13 18:12:18.029112 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
|
||
|
||
# revision identifiers, used by Alembic. | ||
revision = "6fc7886d665d" | ||
down_revision = "3c6531f32351" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
# Rename persona_category table to persona_label | ||
op.rename_table("persona_category", "persona_label") | ||
|
||
# Create the new association table | ||
op.create_table( | ||
"persona__persona_label", | ||
sa.Column("persona_id", sa.Integer(), nullable=False), | ||
sa.Column("persona_label_id", sa.Integer(), nullable=False), | ||
sa.ForeignKeyConstraint( | ||
["persona_id"], | ||
["persona.id"], | ||
), | ||
sa.ForeignKeyConstraint( | ||
["persona_label_id"], | ||
["persona_label.id"], | ||
ondelete="CASCADE", | ||
), | ||
sa.PrimaryKeyConstraint("persona_id", "persona_label_id"), | ||
) | ||
|
||
# Copy existing relationships to the new table | ||
op.execute( | ||
""" | ||
INSERT INTO persona__persona_label (persona_id, persona_label_id) | ||
SELECT id, category_id FROM persona WHERE category_id IS NOT NULL | ||
""" | ||
) | ||
|
||
# Remove the old category_id column from persona table | ||
op.drop_column("persona", "category_id") | ||
|
||
|
||
def downgrade() -> None: | ||
# Rename persona_label table back to persona_category | ||
op.rename_table("persona_label", "persona_category") | ||
|
||
# Add back the category_id column to persona table | ||
op.add_column("persona", sa.Column("category_id", sa.Integer(), nullable=True)) | ||
op.create_foreign_key( | ||
"persona_category_id_fkey", | ||
"persona", | ||
"persona_category", | ||
["category_id"], | ||
["id"], | ||
) | ||
|
||
# Copy the first label relationship back to the persona table | ||
op.execute( | ||
""" | ||
UPDATE persona | ||
SET category_id = ( | ||
SELECT persona_label_id | ||
FROM persona__persona_label | ||
WHERE persona__persona_label.persona_id = persona.id | ||
LIMIT 1 | ||
) | ||
""" | ||
) | ||
|
||
# Drop the association table | ||
op.drop_table("persona__persona_label") |
27 changes: 27 additions & 0 deletions
27
backend/alembic/versions/aeda5f2df4f6_add_pinned_assistants.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,27 @@ | ||
"""add pinned assistants | ||
Revision ID: aeda5f2df4f6 | ||
Revises: c5eae4a75a1b | ||
Create Date: 2025-01-09 16:04:10.770636 | ||
""" | ||
from alembic import op | ||
import sqlalchemy as sa | ||
from sqlalchemy.dialects import postgresql | ||
|
||
# revision identifiers, used by Alembic. | ||
revision = "aeda5f2df4f6" | ||
down_revision = "c5eae4a75a1b" | ||
branch_labels = None | ||
depends_on = None | ||
|
||
|
||
def upgrade() -> None: | ||
op.add_column( | ||
"user", sa.Column("pinned_assistants", postgresql.JSONB(), nullable=True) | ||
) | ||
op.execute('UPDATE "user" SET pinned_assistants = chosen_assistants') | ||
|
||
|
||
def downgrade() -> None: | ||
op.drop_column("user", "pinned_assistants") |
Oops, something went wrong.