Difference between revisions of "Database Table: domains"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'domains =Definition= <source lang="sql"> CREATE TABLE domains ( domain VARCHAR(80) NOT NULL, PRIMARY KEY (domain), userid INT UNSIGNED NOT...')
 
Line 1: Line 1:
[[Category: Database Table|domains]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE domains
 
CREATE TABLE domains
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|domains]]

Revision as of 11:19, 31 March 2009

Definition

CREATE TABLE domains
(
   DOMAIN  VARCHAR(80) NOT NULL,
   PRIMARY KEY (DOMAIN),
   userid  INT UNSIGNED NOT NULL,
   INDEX (userid)
)

Relationships

Location

Global database