Skip to content
Snippets Groups Projects
Commit bf4c10f4 authored by markus scheller's avatar markus scheller
Browse files

Merge branch 'master' of git.fsmpi.rwth-aachen.de:protokollsystem/proto3

parents 704cbd1c 424c83c4
No related branches found
No related tags found
No related merge requests found
"""empty message
Revision ID: ead59eff0835
Revises: 279bfa293885
Create Date: 2018-03-01 15:58:34.177099
"""
from alembic import op
import sqlalchemy as sa
# revision identifiers, used by Alembic.
revision = 'ead59eff0835'
down_revision = '279bfa293885'
branch_labels = None
depends_on = None
def upgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.add_column('protocoltypes', sa.Column('latex_template', sa.String(), nullable=True))
# ### end Alembic commands ###
def downgrade():
# ### commands auto generated by Alembic - please adjust! ###
op.drop_column('protocoltypes', 'latex_template')
# ### end Alembic commands ###
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment