From 4b304769d226300caf2ca451c53716e579541c0d Mon Sep 17 00:00:00 2001 From: Patrick Uiterwijk Date: Nov 10 2016 18:55:49 +0000 Subject: Make SAML2SessionStore depend on table creation by schema system Signed-off-by: Patrick Uiterwijk --- diff --git a/ipsilon/util/data.py b/ipsilon/util/data.py index 2512abc..556c559 100644 --- a/ipsilon/util/data.py +++ b/ipsilon/util/data.py @@ -886,9 +886,6 @@ class SAML2SessionStore(Store): def __init__(self, database_url): super(SAML2SessionStore, self).__init__(database_url=database_url) self.table = 'saml2_sessions' - # pylint: disable=protected-access - table = SqlQuery(self._db, self.table, UNIQUE_DATA_TABLE)._table - table.create(checkfirst=True) def _get_unique_id_from_column(self, name, value): """