From cb289d938f5c28301c1df087334c82b40d6d0d56 Mon Sep 17 00:00:00 2001 From: Mark Reynolds Date: Jan 18 2017 12:46:41 +0000 Subject: Revise comment in migration script --- diff --git a/alembic/versions/38581a8fbae2_add_custom_field_data.py b/alembic/versions/38581a8fbae2_add_custom_field_data.py index 925009c..1090b04 100644 --- a/alembic/versions/38581a8fbae2_add_custom_field_data.py +++ b/alembic/versions/38581a8fbae2_add_custom_field_data.py @@ -15,8 +15,8 @@ import sqlalchemy as sa def upgrade(): - ''' Add a new drop-down list type to the custom fields. This requires us - to store the list items in the issue_keys table. ''' + ''' Add a new drop-down list type to the custom fields. The list options + need to be stored in the issue_keys table. ''' op.add_column('issue_keys', sa.Column('key_data', sa.Text()))