diff --git a/alembic/versions/3c25e14b855b_add_an_avatar_email_for_project.py b/alembic/versions/3c25e14b855b_add_an_avatar_email_for_project.py index 886d20d..407f2d4 100644 --- a/alembic/versions/3c25e14b855b_add_an_avatar_email_for_project.py +++ b/alembic/versions/3c25e14b855b_add_an_avatar_email_for_project.py @@ -15,7 +15,7 @@ import sqlalchemy as sa def upgrade(): - ''' Add the column merge_status to the table pull_requests. + ''' Add the column merge_status to the table projects. ''' op.add_column( 'projects', @@ -24,6 +24,6 @@ def upgrade(): def downgrade(): - ''' Remove the column merge_status from the table pull_requests. + ''' Remove the column merge_status from the table projects. ''' op.drop_column('projects', 'avatar_email')