Difference between revisions of "Database Table: useridmap"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'useridmap =Definition= <source lang="sql"> CREATE TABLE useridmap ( userid int(10) unsigned NOT NULL, user char(15) NOT NULL, PRIMARY KEY (use...')
 
Line 1: Line 1:
[[Category: Database Table|useridmap]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE useridmap (
 
CREATE TABLE useridmap (
Line 10: Line 10:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|useridmap]]

Revision as of 10:32, 4 April 2009

Definition

CREATE TABLE useridmap (
  userid INT(10) UNSIGNED NOT NULL,
  USER CHAR(15) NOT NULL,
  PRIMARY KEY  (userid),
  UNIQUE KEY USER (USER)
)

Relationships

Location

Global database