Skip to content

Commit

Permalink
Makes migration run w/o mysql changes.
Browse files Browse the repository at this point in the history
  • Loading branch information
hvolkmer committed Oct 2, 2012
1 parent 6b71cdb commit afe9e2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nova/db/sqlalchemy/migrate_repo/versions/082_essex.py
Original file line number Diff line number Diff line change
Expand Up @@ -277,12 +277,12 @@ def upgrade(migrate_engine):
Column('updated_at', DateTime),
Column('deleted_at', DateTime),
Column('deleted', Boolean),
Column('domain', String(length=512), primary_key=True, nullable=False),
Column('domain', String(length=255), primary_key=True, nullable=False),
Column('scope', String(length=255)),
Column('availability_zone', String(length=255)),
Column('project_id', String(length=255), ForeignKey('projects.id')),
mysql_engine='InnoDB',
#mysql_charset='utf8'
mysql_charset='utf8'
)

fixed_ips = Table('fixed_ips', meta,
Expand Down

0 comments on commit afe9e2e

Please sign in to comment.