Difference between revisions of "Database Table: openid external"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Updating: Format, flag dropped)
 
(6 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{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}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|openid_external]]
+

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