From ddc0d5effa21a0f0e3440ad792ceb52db1f62496 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 11 2015 16:54:50 +0000 Subject: Adjust docstring to reflect what's happening --- 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')