Skip to content
Snippets Groups Projects
Commit 2aeab674 authored by Dries Buytaert's avatar Dries Buytaert
Browse files

- Patch #156587 by bjaspan: database schema fix.

parent e0fe1ae8
No related branches found
No related tags found
No related merge requests found
......@@ -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),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment