Difference between revisions of "Database Table: moodthemes"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'moodthemes =Definition= <source lang="sql"> CREATE TABLE moodthemes ( moodthemeid int(10) unsigned NOT NULL auto_increment, ownerid int(10) unsig...')
 
(Robot: Updating: Format)
 
(6 intermediate revisions by 2 users not shown)
Line 1: Line 1:
[[Category: Database Table|moodthemes]]
+
{{Database Table|name=moodthemes|table type=global|need desc=1|repo=dw-free}}
=Definition=
+
= Definition =
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE moodthemes (
 
CREATE TABLE moodthemes (
  moodthemeid int(10) unsigned NOT NULL auto_increment,
+
    moodthemeid int(10) unsigned NOT NULL auto_increment,
  ownerid int(10) unsigned NOT NULL default '0',
+
    ownerid int(10) unsigned NOT NULL default '0',
  name varchar(50) default NULL,
+
    name varchar(50) default NULL,
  des varchar(100) default NULL,
+
    des varchar(100) default NULL,
  is_public enum('Y','N') NOT NULL default 'N',
+
    is_public enum('Y','N') NOT NULL default 'N',
  PRIMARY KEY  (moodthemeid),
+
 
  KEY (is_public),
+
    PRIMARY KEY  (moodthemeid),
  KEY (ownerid)
+
    KEY (is_public),
 +
    KEY (ownerid)
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
=Relationships=
+
 
+
=Location=
+
[[Global database]]
+

Latest revision as of 15:55, 22 July 2010

This is a global table.

Definition

CREATE TABLE moodthemes (
    moodthemeid INT(10) UNSIGNED NOT NULL AUTO_INCREMENT,
    ownerid INT(10) UNSIGNED NOT NULL DEFAULT '0',
    name VARCHAR(50) DEFAULT NULL,
    des VARCHAR(100) DEFAULT NULL,
    is_public enum('Y','N') NOT NULL DEFAULT 'N',
 
    PRIMARY KEY  (moodthemeid),
    KEY (is_public),
    KEY (ownerid)
)

Relationships

Incoming

  • Foreign key: moodthemeid from user.moodthemeid