summaryrefslogtreecommitdiffstats
path: root/Auth/OpenID/SQLiteStore.php
diff options
context:
space:
mode:
Diffstat (limited to 'Auth/OpenID/SQLiteStore.php')
-rw-r--r--Auth/OpenID/SQLiteStore.php10
1 files changed, 0 insertions, 10 deletions
diff --git a/Auth/OpenID/SQLiteStore.php b/Auth/OpenID/SQLiteStore.php
index 81f7ce9..130f8fa 100644
--- a/Auth/OpenID/SQLiteStore.php
+++ b/Auth/OpenID/SQLiteStore.php
@@ -28,16 +28,6 @@ class Auth_OpenID_SQLiteStore extends Auth_OpenID_SQLStore {
"secret BLOB(128), issued INTEGER, lifetime INTEGER, ".
"assoc_type VARCHAR(64), PRIMARY KEY (server_url, handle))";
- $this->sql['settings_table'] =
- "CREATE TABLE %s (setting VARCHAR(128) UNIQUE PRIMARY KEY, ".
- "value BLOB(20))";
-
- $this->sql['create_auth'] =
- "INSERT INTO %s VALUES ('auth_key', ?)";
-
- $this->sql['get_auth'] =
- "SELECT value FROM %s WHERE setting = 'auth_key'";
-
$this->sql['set_assoc'] =
"INSERT OR REPLACE INTO %s VALUES (?, ?, ?, ?, ?, ?)";