Skip to content

Commit b83d7bc

Browse files
author
Marco Martinez
committed
Merge branch 'develop'
2 parents 6e64e5f + 575ccf3 commit b83d7bc

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
"""Alter attribute audit name/title rescrictions
2+
3+
We forgot to do this in the last revision.
4+
5+
Revision ID: 2319d7836e29
6+
Revises: 425e1e704a65
7+
Create Date: 2016-03-08 16:04:25.037251
8+
9+
"""
10+
11+
# revision identifiers, used by Alembic.
12+
revision = '2319d7836e29'
13+
down_revision = '425e1e704a65'
14+
branch_labels = None
15+
16+
from alembic import op
17+
import sqlalchemy as sa
18+
19+
20+
def upgrade():
21+
op.alter_column('attribute_audit', 'title', nullable=True)
22+
op.alter_column('attribute_audit', 'name', type_=sa.String(100))
23+
24+
25+
def downgrade():
26+
pass

0 commit comments

Comments
 (0)