* auto fixes * auto fix pt2 and transitive deps and undefined var checking locals() * manual fixes (ignored or letta-code fixed) * fix circular import
32 lines
918 B
Python
32 lines
918 B
Python
"""add project constraint on tools
|
|
|
|
Revision ID: 39577145c45d
|
|
Revises: d0880aae6cee
|
|
Create Date: 2025-12-17 15:46:06.184858
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
from alembic import op
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "39577145c45d"
|
|
down_revision: Union[str, None] = "d0880aae6cee"
|
|
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.create_unique_constraint(
|
|
"uix_organization_project_name", "tools", ["organization_id", "project_id", "name"], postgresql_nulls_not_distinct=True
|
|
)
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_constraint("uix_organization_project_name", "tools", type_="unique")
|
|
# ### end Alembic commands ###
|