Difference between revisions of "Database Table: moodthemes"

From Dreamwidth Notes
Jump to: navigation, search
m (reformat, right category)
m (Robot: Converting database table to use semantic mediawiki form.)
Line 1: Line 1:
 +
{{#set:name=moodthemes|clustered=false}}
 
= Definition =
 
= Definition =
  
Line 14: Line 15:
 
</source>
 
</source>
  
= Relationships =
+
{{Database Table Footer}}
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category: Database Tables|moodthemes]]
+

Revision as of 13:16, 2 October 2009

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