summaryrefslogtreecommitdiff
path: root/modules/openid
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2007-07-04 15:52:06 +0000
committerDries Buytaert <dries@buytaert.net>2007-07-04 15:52:06 +0000
commit2aeab67487cd0b40898ab842e6546c7c89a8a39b (patch)
tree5c8ea303a70adca3bb98d6b88bad09a6beca865c /modules/openid
parente0fe1ae8eb5dd4e5d5442b8b48afe2c47a166d2b (diff)
downloadbrdo-2aeab67487cd0b40898ab842e6546c7c89a8a39b.tar.gz
brdo-2aeab67487cd0b40898ab842e6546c7c89a8a39b.tar.bz2
- Patch #156587 by bjaspan: database schema fix.
Diffstat (limited to 'modules/openid')
-rw-r--r--modules/openid/openid.schema2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/openid/openid.schema b/modules/openid/openid.schema
index 668b8b8ec..258756b27 100644
--- a/modules/openid/openid.schema
+++ b/modules/openid/openid.schema
@@ -5,7 +5,7 @@ function openid_schema() {
$schema['openid_association'] = array(
'fields' => array(
'idp_endpoint_uri' => array('type' => 'varchar', 'length' => 255),
- 'assoc_handle' => array('type' => 'varchar', 'length' => 255),
+ 'assoc_handle' => array('type' => 'varchar', 'length' => 255, 'not null' => TRUE),
'assoc_type' => array('type' => 'varchar', 'length' => 32),
'session_type' => array('type' => 'varchar', 'length' => 32),
'mac_key' => array('type' => 'varchar', 'length' => 255),