From aa308028aa570d15d3abf9c7679d7de16019b78b Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Mon, 18 Jun 2007 16:09:39 +0000 Subject: - Patch #131026 by James et al: OpenID client support for Drupal! Let this be the day where we help revolutionize the online society, and the way websites and web services interoperate. Or something. --- modules/openid/openid.schema | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 modules/openid/openid.schema (limited to 'modules/openid/openid.schema') diff --git a/modules/openid/openid.schema b/modules/openid/openid.schema new file mode 100644 index 000000000..668b8b8ec --- /dev/null +++ b/modules/openid/openid.schema @@ -0,0 +1,19 @@ + array( + 'idp_endpoint_uri' => array('type' => 'varchar', 'length' => 255), + 'assoc_handle' => array('type' => 'varchar', 'length' => 255), + 'assoc_type' => array('type' => 'varchar', 'length' => 32), + 'session_type' => array('type' => 'varchar', 'length' => 32), + 'mac_key' => array('type' => 'varchar', 'length' => 255), + 'created' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), + 'expires_in' => array('type' => 'int', 'not null' => TRUE, 'default' => 0), + ), + 'primary key' => array('assoc_handle'), + ); + + return $schema; +} \ No newline at end of file -- cgit v1.2.3