Both the Service and Role models use Integers for ID's & FK's:

    class Role(Base, KeystoneBase):
        id = Column(Integer, primary_key=True, autoincrement=True)
        service_id = Column(Integer, ForeignKey('services.id'))

    class Service(Base, KeystoneBase):
        id = Column(Integer, primary_key=True, autoincrement=True)

Source:
https://github.com/openstack/keystone/blob/master/keystone/backends/sqlalchemy/models.py

** Changed in: keystone (Ubuntu Oneiric)
       Status: In Progress => Invalid

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/861682

Title:
  Foreign keys should relate to fields of the same type

To manage notifications about this bug go to:
https://bugs.launchpad.net/keystone/+bug/861682/+subscriptions

-- 
ubuntu-bugs mailing list
ubuntu-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/ubuntu-bugs

Reply via email to