Comment 3 for bug 1630448

Revision history for this message
Matthew Thode (prometheanfire) wrote :

for reference, looking at this

https://review.openstack.org/gitweb?p=openstack/nova.git;a=blob;f=nova/db/sqlalchemy/api_migrations/migrate_repo/versions/018_instance_groups.py

Here's what's in the database for those tables, it doesn't seem to match up with what's in 018.

nova=# select * from instance_group_policy;
 created_at | updated_at | deleted_at | deleted | id | policy | group_id
------------+------------+------------+---------+----+--------+----------
(0 rows)

nova=# select * from instance_group_member;
 created_at | updated_at | deleted_at | deleted | id | instance_id | group_id
------------+------------+------------+---------+----+-------------+----------
(0 rows)

nova=# select * from instance_groups;
 created_at | updated_at | deleted_at | deleted | id | user_id | project_id | uuid | name
------------+------------+------------+---------+----+---------+------------+------+------
(0 rows)