Difference between revisions of "Database Table: openid endpoint"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'openid_endpoint =Definition= <source lang="sql"> CREATE TABLE openid_endpoint ( endpoint_id int(10) unsigned NOT NULL auto_increment, url varchar...')
 
Line 1: Line 1:
[[Category: Database Table|openid_endpoint]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE openid_endpoint (
 
CREATE TABLE openid_endpoint (
Line 12: Line 12:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|openid_endpoint]]

Revision as of 15:41, 31 March 2009

Definition

CREATE TABLE openid_endpoint (
  endpoint_id INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
  url VARCHAR(255) BINARY NOT NULL DEFAULT '',
  last_assert_time INT(10) UNSIGNED DEFAULT NULL,
  PRIMARY KEY  (endpoint_id),
  UNIQUE KEY url (url),
  KEY last_assert_time (last_assert_time)
)

Relationships

Location

Global database