Difference between revisions of "Database Table: email"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'email =Definition= <source lang="sql"> CREATE TABLE email ( userid INT UNSIGNED NOT NULL PRIMARY KEY, email VARCHAR(50), INDEX (e...')
 
(Robot: Updating: Format)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category: Database Table|email]]
+
{{Database Table|name=email|table type=global|need desc=1|repo=dw-free}}
=Definition=
+
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE email (
 
CREATE TABLE email (
  userid    INT UNSIGNED NOT NULL PRIMARY KEY,
+
    userid    INT UNSIGNED NOT NULL PRIMARY KEY,
  email    VARCHAR(50),
+
    email    VARCHAR(50),
  INDEX    (email)
+
 
 +
    INDEX    (email)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
=Relationships=
+
 
+
=Location=
+
[[Global database]]
+

Latest revision as of 15:57, 22 July 2010

This is a global table.

Definition

CREATE TABLE email (
    userid    INT UNSIGNED NOT NULL PRIMARY KEY,
    email     VARCHAR(50),
 
    INDEX     (email)
)

Relationships