diff options
| author | Jenkins <jenkins@review.openstack.org> | 2012-08-27 16:43:59 +0000 |
|---|---|---|
| committer | Gerrit Code Review <review@openstack.org> | 2012-08-27 16:43:59 +0000 |
| commit | de8335ff8f09379cf575123d4a44e15f8d65ce20 (patch) | |
| tree | 677ba3ef718c1c6b31e4b6dc74ffd81dab6bde7b | |
| parent | f10e4480d4c3d7ebcbd97a3e64753bae645e537c (diff) | |
| parent | d14fbc5b73b6cc358209b7d071dfe0e144c06132 (diff) | |
| download | nova-de8335ff8f09379cf575123d4a44e15f8d65ce20.tar.gz nova-de8335ff8f09379cf575123d4a44e15f8d65ce20.tar.xz nova-de8335ff8f09379cf575123d4a44e15f8d65ce20.zip | |
Merge "Fix column variable typo"
| -rw-r--r-- | nova/db/sqlalchemy/migrate_repo/versions/098_update_volume_attach_time.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nova/db/sqlalchemy/migrate_repo/versions/098_update_volume_attach_time.py b/nova/db/sqlalchemy/migrate_repo/versions/098_update_volume_attach_time.py index 46f681100..5a239030d 100644 --- a/nova/db/sqlalchemy/migrate_repo/versions/098_update_volume_attach_time.py +++ b/nova/db/sqlalchemy/migrate_repo/versions/098_update_volume_attach_time.py @@ -64,7 +64,7 @@ def downgrade(migrate_engine): where(volumes.c.id == v['id']).\ values(attach_string=attach_time).execute() except Exception: - attach_datetime.drop() + attach_string.drop() raise old_attachtime.alter(name='attach_time_old') |
