Change Table name to correct name

The table name is currently wrong in this version and needs to
be changed to the correct name. It is preventing the database
migration script from running correctly.

Closes-Bug: #1562091
Change-Id: I9be88a4385ab58b37be5842aaaefd8353a2f6f76
This commit is contained in:
Christopher Solis 2016-03-25 11:44:36 -05:00
parent c8bf8ba53f
commit 2ecc676dd2
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ import sqlalchemy as sa
def upgrade():
op.alter_column(
'ContainerConsumerMetadatum',
'container_consumer_metadata',
'URL',
type_=sa.String(length=255)
)