29 lines
693 B
Python
29 lines
693 B
Python
"""add_full_script_to_projects
|
|
|
|
Revision ID: 0dbf67c5a82b
|
|
Revises: ba71bc5acd84
|
|
Create Date: 2025-08-29 10:23:11.757401
|
|
|
|
"""
|
|
from alembic import op
|
|
import sqlalchemy as sa
|
|
|
|
|
|
# revision identifiers, used by Alembic.
|
|
revision = '0dbf67c5a82b'
|
|
down_revision = 'ba71bc5acd84'
|
|
branch_labels = None
|
|
depends_on = None
|
|
|
|
|
|
def upgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.add_column('projects', sa.Column('full_script', sa.Text(), nullable=True))
|
|
# ### end Alembic commands ###
|
|
|
|
|
|
def downgrade() -> None:
|
|
# ### commands auto generated by Alembic - please adjust! ###
|
|
op.drop_column('projects', 'full_script')
|
|
# ### end Alembic commands ###
|