From 92563f358d23542974be47796d1139f3380432b7 Mon Sep 17 00:00:00 2001 From: Pierre-Yves Chibon Date: Jun 27 2016 17:39:59 +0000 Subject: Adjust docstring in the alembic migration adding notifications to PR comments --- diff --git a/alembic/versions/58e60d869326_add_notification_bool_to_pr.py b/alembic/versions/58e60d869326_add_notification_bool_to_pr.py index 164b730..2c7603b 100644 --- a/alembic/versions/58e60d869326_add_notification_bool_to_pr.py +++ b/alembic/versions/58e60d869326_add_notification_bool_to_pr.py @@ -15,7 +15,7 @@ import sqlalchemy as sa def upgrade(): - ''' Add the column merge_status to the table projects. + ''' Add the column notification to the table pull_request_comments. ''' op.add_column( 'pull_request_comments', @@ -28,6 +28,6 @@ def upgrade(): def downgrade(): - ''' Remove the column merge_status from the table projects. + ''' Remove the column notification from the table pull_request_comments. ''' op.drop_column('pull_request_comments', 'notification')