Difference between revisions of "Database Table: openid external"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use database table header template.)
m (Robot: Updating: Format, flag dropped)
 
(3 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Database Table|name=openid_external|table type=global}}
+
{{Database Table|name=openid_external|table type=global|need desc=1|needs work=dropped|repo=dw-free}}
 
= Definition =
 
= Definition =
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE openid_external (
 
CREATE TABLE openid_external (
  userid int(10) unsigned NOT NULL default '0',
+
    userid int(10) unsigned NOT NULL default '0',
  url varchar(255) binary default NULL,
+
    url varchar(255) binary default NULL,
  KEY userid (userid)
+
 
 +
    KEY userid (userid)
 
)
 
)
 
</source>
 
</source>
 
 
{{Database Table Footer}}
 
{{Database Table Footer}}

Latest revision as of 21:15, 15 October 2010

This is a global table.This database table is flagged as needing checking for the reason: dropped

Definition

CREATE TABLE openid_external (
    userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
    url VARCHAR(255) BINARY DEFAULT NULL,
 
    KEY userid (userid)
)

Relationships