Difference between revisions of "Database Table: moodthemes"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Converting database table to use semantic mediawiki form.)
m (Robot: Converting database table to use database table header template.)
Line 1: Line 1:
{{#set:name=moodthemes|table type=global}}
+
{{Database Table|name=moodthemes|table type=global}}
 
= Definition =
 
= Definition =
  

Revision as of 11:28, 27 January 2010

"{{{repo}}}" is not in the list of possible values (dw-free, dw-nonfree) for this property. 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