Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
"""Add assignment document_uri column.

Revision ID: fa62e42cb531
Revises: 2a45f5cb8e25
"""

import sqlalchemy as sa
from alembic import op

revision = "fa62e42cb531"
down_revision = "2a45f5cb8e25"


def upgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.add_column("assignment", sa.Column("document_uri", sa.Unicode(), nullable=True))
# ### end Alembic commands ###


def downgrade() -> None:
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column("assignment", "document_uri")
# ### end Alembic commands ###
Loading