Update db migration for pod

Patch Ib765d1c3ed8a6c06136233abd393fb1efae71e41 add two fields
for pods but db migration was not updated.

Change-Id: Id66b606cd11e43a8ef7b8c46f805b37c22c571a8
This commit is contained in:
Jay Lau 2014-12-07 05:09:43 -05:00
parent 79d61e5244
commit 4bb16aaa90
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,8 @@ def upgrade():
sa.Column('updated_at', sa.DateTime(), nullable=True),
sa.Column('id', sa.Integer(), nullable=False),
sa.Column('uuid', sa.String(length=36), nullable=True),
sa.Column('name', sa.String(length=255), nullable=True),
sa.Column('desc', sa.String(length=255), nullable=True),
sa.PrimaryKeyConstraint('id'),
mysql_ENGINE='InnoDB',
mysql_DEFAULT_CHARSET='UTF8'