Difference between revisions of "Database Table: extuser"
From Dreamwidth Notes
(Created page with 'extuser =Definition= <source lang="sql"> CREATE TABLE extuser ( userid INT UNSIGNED NOT NULL PRIMARY KEY, siteid INT UNSIGNED NOT NULL, extus...') |
Foxfirefey (Talk | contribs) m (reformat, right category) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE extuser ( | CREATE TABLE extuser ( | ||
Line 12: | Line 12: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|extuser]] |
Revision as of 20:58, 26 March 2009
Definition
CREATE TABLE extuser ( userid INT UNSIGNED NOT NULL PRIMARY KEY, siteid INT UNSIGNED NOT NULL, extuser VARCHAR(50), extuserid INT UNSIGNED, UNIQUE KEY `extuser` (siteid, extuser), UNIQUE KEY `extuserid` (siteid, extuserid) )