"""add instructions field to sources Revision ID: 18e300709530 Revises: 878607e41ca4 Create Date: 2025-05-08 17:56:20.877183 """ 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 = "18e300709530" down_revision: Union[str, None] = "878607e41ca4" 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 # ### commands auto generated by Alembic - please adjust! ### op.add_column("sources", sa.Column("instructions", sa.String(), nullable=True)) # ### end Alembic commands ### def downgrade() -> None: # Skip this migration for SQLite if not settings.letta_pg_uri_no_default: return # ### commands auto generated by Alembic - please adjust! ### op.drop_column("sources", "instructions") # ### end Alembic commands ###