Difference between revisions of "Database Table: openid external"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'openid_external =Definition= <source lang="sql"> CREATE TABLE openid_external ( userid int(10) unsigned NOT NULL default '0', url varchar(255) bi...')
 
m (Robot: Updating: Format, flag dropped)
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category: Database Table|openid_external]]
+
{{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]]
+

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