~ubuntu-branches/ubuntu/quantal/nova/quantal-proposed

« back to all changes in this revision

Viewing changes to nova/db/sqlalchemy/migrate_repo/versions/029_add_zone_weight_offsets.py

  • Committer: Bazaar Package Importer
  • Author(s): Chuck Short
  • Date: 2011-10-21 14:37:26 UTC
  • mto: This revision was merged to the branch mainline in revision 47.
  • Revision ID: james.westby@ubuntu.com-20111021143726-dk1m1a0vwov3kyls
Tags: upstream-2012.1~e1~20111020.11229
ImportĀ upstreamĀ versionĀ 2012.1~e1~20111020.11229

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
meta = MetaData()
18
18
 
19
19
zones = Table('zones', meta,
20
 
        Column('id', Integer(),  primary_key=True, nullable=False),
 
20
        Column('id', Integer(), primary_key=True, nullable=False),
21
21
        )
22
22
 
23
23
weight_offset = Column('weight_offset', Float(), default=0.0)