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()))