From ac1dfd25c4b356c1725339709e535d4147feda3c Mon Sep 17 00:00:00 2001 From: Soren Hansen Date: Tue, 12 Oct 2010 14:29:57 +0200 Subject: Remove spurious project_id addition to KeyPair model. --- nova/db/sqlalchemy/models.py | 1 - 1 file changed, 1 deletion(-) diff --git a/nova/db/sqlalchemy/models.py b/nova/db/sqlalchemy/models.py index 584214deb..85b7c0aae 100644 --- a/nova/db/sqlalchemy/models.py +++ b/nova/db/sqlalchemy/models.py @@ -351,7 +351,6 @@ class KeyPair(BASE, NovaBase): name = Column(String(255)) user_id = Column(String(255)) - project_id = Column(String(255)) fingerprint = Column(String(255)) public_key = Column(Text) -- cgit