/[drupal]/contributions/modules/openid/openid.schema
ViewVC logotype

Contents of /contributions/modules/openid/openid.schema

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.2 - (show annotations) (download)
Tue May 29 05:19:10 2007 UTC (2 years, 5 months ago) by weitzman
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +2 -2 lines
fix typo in .schema file and fix for new fapi3 argument order
1 <?php
2 // $Id: openid.schema,v 1.1 2007/05/28 17:16:15 walkah Exp $
3
4 function openid_schema() {
5 $schema['openid_association'] = array(
6 'fields' => array(
7 'idp_endpoint_uri' => array('type' => 'varchar', 'length' => 255),
8 'assoc_handle' => array('type' => 'varchar', 'length' => 255),
9 'assoc_type' => array('type' => 'varchar', 'length' => 32),
10 'session_type' => array('type' => 'varchar', 'length' => 32),
11 'mac_key' => array('type' => 'varchar', 'length' => 255),
12 'created' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
13 'expires_in' => array('type' => 'int', 'not null' => TRUE, 'default' => 0),
14 ),
15 'primary key' => array('assoc_handle'),
16 );
17
18 return $schema;
19 }

  ViewVC Help
Powered by ViewVC 1.1.2