Rename the SAML2 sessions database to saml2_sessions
[cascardo/ipsilon.git] / ipsilon / util / data.py
index 200feb8..c0fe4ab 100644 (file)
@@ -586,7 +586,7 @@ class SAML2SessionStore(Store):
 
     def __init__(self, database_url):
         super(SAML2SessionStore, self).__init__(database_url=database_url)
-        self.table = 'sessions'
+        self.table = 'saml2_sessions'
         # pylint: disable=protected-access
         table = SqlQuery(self._db, self.table, UNIQUE_DATA_COLUMNS)._table
         table.create(checkfirst=True)