Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix for revision issues #812

Merged
merged 1 commit into from
Aug 22, 2019
Merged
Show file tree
Hide file tree
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
Expand Up @@ -35,4 +35,7 @@ def downgrade():
op.drop_column("runs", "error_count")
op.drop_column("runs", "ratelimit_count")
op.drop_column("runs", "success_count")
op.add_column("runs", sa.Column("status", sa.String(20), primary_key=True))
op.add_column(
"runs",
sa.Column("status", sa.String(20), primary_key=True, server_default="ended"),
)
1 change: 1 addition & 0 deletions news/PR812.bug
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Constrain failure during alembic downgrade
1 change: 1 addition & 0 deletions news/PR812.dev
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Change required version for pyasn1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ flask-restful
flask-wtf
jinja2 >= 2.4
ordered-set
pyasn1 <0.5.0,>=0.4.1
pyasn1 <0.5.0,>=0.4.6
python-dateutil
psycopg2
pytoml
Expand Down