summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMarco Ceppi <marco@ceppi.net>2012-07-31 12:20:27 -0700
committerMarco Ceppi <marco@ceppi.net>2012-07-31 12:20:27 -0700
commit44243b1b99caa60fbbe066384e69dd0af1c8ec38 (patch)
tree963ea001a4be44675e5db106b09ba21d36df3f5a
parent705d5a68b85cb9c737e55c12838ff1fbfb0b789e (diff)
parent7824c1e0c9779c33299c805ddb37fd868285585d (diff)
downloadphp-openid-44243b1b99caa60fbbe066384e69dd0af1c8ec38.zip
php-openid-44243b1b99caa60fbbe066384e69dd0af1c8ec38.tar.gz
php-openid-44243b1b99caa60fbbe066384e69dd0af1c8ec38.tar.bz2
Merge pull request #41 from cakebaker/master
Changing datatype of the server_url column from blob to varchar
-rw-r--r--Auth/OpenID/MySQLStore.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Auth/OpenID/MySQLStore.php b/Auth/OpenID/MySQLStore.php
index 810f059..a5299b3 100644
--- a/Auth/OpenID/MySQLStore.php
+++ b/Auth/OpenID/MySQLStore.php
@@ -32,7 +32,7 @@ class Auth_OpenID_MySQLStore extends Auth_OpenID_SQLStore {
$this->sql['assoc_table'] =
"CREATE TABLE %s (\n".
- " server_url BLOB NOT NULL,\n".
+ " server_url VARCHAR(2047) NOT NULL,\n".
" handle VARCHAR(255) NOT NULL,\n".
" secret BLOB NOT NULL,\n".
" issued INTEGER NOT NULL,\n".