feat: byok 2.0 (#1963)
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
"""add byok fields and unique constraint
|
||||
|
||||
Revision ID: 373dabcba6cf
|
||||
Revises: c56081a05371
|
||||
Create Date: 2025-04-30 19:38:25.010856
|
||||
|
||||
"""
|
||||
|
||||
from typing import Sequence, Union
|
||||
|
||||
import sqlalchemy as sa
|
||||
|
||||
from alembic import op
|
||||
|
||||
# revision identifiers, used by Alembic.
|
||||
revision: str = "373dabcba6cf"
|
||||
down_revision: Union[str, None] = "c56081a05371"
|
||||
branch_labels: Union[str, Sequence[str], None] = None
|
||||
depends_on: Union[str, Sequence[str], None] = None
|
||||
|
||||
|
||||
def upgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.add_column("providers", sa.Column("provider_type", sa.String(), nullable=True))
|
||||
op.add_column("providers", sa.Column("base_url", sa.String(), nullable=True))
|
||||
op.create_unique_constraint("unique_name_organization_id", "providers", ["name", "organization_id"])
|
||||
# ### end Alembic commands ###
|
||||
|
||||
|
||||
def downgrade() -> None:
|
||||
# ### commands auto generated by Alembic - please adjust! ###
|
||||
op.drop_constraint("unique_name_organization_id", "providers", type_="unique")
|
||||
op.drop_column("providers", "base_url")
|
||||
op.drop_column("providers", "provider_type")
|
||||
# ### end Alembic commands ###
|
||||
Reference in New Issue
Block a user