mirror of
https://github.com/danswer-ai/danswer.git
synced 2025-03-29 11:12:02 +01:00
Adds: - name for connector credential pairs + frontend changes to start populating this field - document set table migration - during indexing, document sets are now checked and inserted into Vespa - background job to check if document sets need to be synced - document set management APIs - document set management dashboard in the UI
61 lines
1.7 KiB
Python
61 lines
1.7 KiB
Python
"""Add ID to ConnectorCredentialPair
|
|
|
|
Revision ID: 800f48024ae9
|
|
Revises: 767f1c2a00eb
|
|
Create Date: 2023-09-19 16:13:42.299715
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
from sqlalchemy.schema import Sequence, CreateSequence
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = "800f48024ae9"
|
|
down_revision = "767f1c2a00eb"
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
sequence = Sequence("connector_credential_pair_id_seq")
|
|
op.execute(CreateSequence(sequence)) # type: ignore
|
|
op.add_column(
|
|
"connector_credential_pair",
|
|
sa.Column(
|
|
"id", sa.Integer(), nullable=True, server_default=sequence.next_value()
|
|
),
|
|
)
|
|
op.add_column(
|
|
"connector_credential_pair",
|
|
sa.Column("name", sa.String(), nullable=True),
|
|
)
|
|
|
|
# fill in IDs for existing rows
|
|
op.execute(
|
|
"UPDATE connector_credential_pair SET id = nextval('connector_credential_pair_id_seq') WHERE id IS NULL"
|
|
)
|
|
op.alter_column("connector_credential_pair", "id", nullable=False)
|
|
|
|
op.create_unique_constraint(
|
|
"connector_credential_pair__name__key", "connector_credential_pair", ["name"]
|
|
)
|
|
op.create_unique_constraint(
|
|
"connector_credential_pair__id__key", "connector_credential_pair", ["id"]
|
|
)
|
|
|
|
|
|
def downgrade() -> None:
|
|
op.drop_constraint(
|
|
"connector_credential_pair__name__key",
|
|
"connector_credential_pair",
|
|
type_="unique",
|
|
)
|
|
op.drop_constraint(
|
|
"connector_credential_pair__id__key",
|
|
"connector_credential_pair",
|
|
type_="unique",
|
|
)
|
|
op.drop_column("connector_credential_pair", "name")
|
|
op.drop_column("connector_credential_pair", "id")
|
|
op.execute("DROP SEQUENCE connector_credential_pair_id_seq")
|