summaryrefslogtreecommitdiffstats
path: root/nova/models.py
diff options
context:
space:
mode:
Diffstat (limited to 'nova/models.py')
-rw-r--r--nova/models.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/nova/models.py b/nova/models.py
index 7ad379814..36d6cf3ad 100644
--- a/nova/models.py
+++ b/nova/models.py
@@ -19,7 +19,6 @@
"""
SQLAlchemy models for nova data
"""
-import os
from sqlalchemy.orm import relationship, backref, validates, exc
from sqlalchemy import Table, Column, Integer, String
@@ -34,10 +33,6 @@ FLAGS=flags.FLAGS
Base = declarative_base()
-flags.DEFINE_string('sql_connection',
- 'sqlite:///%s/nova.sqlite' % os.path.abspath("./"),
- 'connection string for sql database')
-
class NovaBase(object):
__table_args__ = {'mysql_engine':'InnoDB'}
__prefix__ = 'none'