* base requirements * autofix * Configure ruff for Python linting and formatting - Set up minimal ruff configuration with basic checks (E, W, F, I) - Add temporary ignores for common issues during migration - Configure pre-commit hooks to use ruff with pass_filenames - This enables gradual migration from black to ruff * Delete sdj * autofixed only * migrate lint action * more autofixed * more fixes * change precommit * try changing the hook * try this stuff
45 lines
1021 B
Python
45 lines
1021 B
Python
"""add read-only column
|
|
|
|
Revision ID: 220856bbf43b
|
|
Revises: 1dc0fee72dea
|
|
Create Date: 2025-05-13 14:42:17.353614
|
|
|
|
"""
|
|
|
|
from typing import Sequence, Union
|
|
|
|
import sqlalchemy as sa
|
|
|
|
from alembic import op
|
|
from letta.settings import settings
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision: str = "220856bbf43b"
|
|
down_revision: Union[str, None] = "1dc0fee72dea"
|
|
branch_labels: Union[str, Sequence[str], None] = None
|
|
depends_on: Union[str, Sequence[str], None] = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# Skip this migration for SQLite
|
|
if not settings.letta_pg_uri_no_default:
|
|
return
|
|
|
|
# add default value of `False`
|
|
op.add_column("block", sa.Column("read_only", sa.Boolean(), nullable=True))
|
|
op.execute(
|
|
"""
|
|
UPDATE block
|
|
SET read_only = False
|
|
"""
|
|
)
|
|
op.alter_column("block", "read_only", nullable=False)
|
|
|
|
|
|
def downgrade() -> None:
|
|
# Skip this migration for SQLite
|
|
if not settings.letta_pg_uri_no_default:
|
|
return
|
|
|
|
op.drop_column("block", "read_only")
|