summaryrefslogtreecommitdiffstats
path: root/keystone/common
diff options
context:
space:
mode:
authorElena Ezhova <eezhova@mirantis.com>2013-07-31 11:39:59 +0400
committerElena Ezhova <eezhova@mirantis.com>2013-08-12 12:15:07 +0400
commit21389a30011bda8233b1f5f2b4469a453246d4ef (patch)
tree30beed92fd041e361b4293fcf71066cf47fab701 /keystone/common
parentc21b458081b011089e6819c716e63331f8df0ce4 (diff)
downloadkeystone-21389a30011bda8233b1f5f2b4469a453246d4ef.tar.gz
keystone-21389a30011bda8233b1f5f2b4469a453246d4ef.tar.xz
keystone-21389a30011bda8233b1f5f2b4469a453246d4ef.zip
Sync models with migrations
This patch syncs models with migrations for: -Endpoint -CredentialModel -TokenModel -TrustModel No actual schema change is taking place, this patch just corrects errors in the model definitions. Made class Index avaliable in keystone.common.sql.core partially implements bp db-sync-models-with-migrations Change-Id: I52f5c455360b65a2d5d884bbbec078dca6d34451
Diffstat (limited to 'keystone/common')
-rw-r--r--keystone/common/sql/core.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/keystone/common/sql/core.py b/keystone/common/sql/core.py
index 2d3114f2..9dd545f4 100644
--- a/keystone/common/sql/core.py
+++ b/keystone/common/sql/core.py
@@ -45,6 +45,7 @@ ModelBase = declarative.declarative_base()
# For exporting to other modules
Column = sql.Column
+Index = sql.Index
String = sql.String
ForeignKey = sql.ForeignKey
DateTime = sql.DateTime