Difference between revisions of "Database Table: moodthemes"
From Dreamwidth Notes
(Created page with 'moodthemes =Definition= <source lang="sql"> CREATE TABLE moodthemes ( moodthemeid int(10) unsigned NOT NULL auto_increment, ownerid int(10) unsig...') |
Foxfirefey (Talk | contribs) m (reformat, right category) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE moodthemes ( | CREATE TABLE moodthemes ( | ||
Line 14: | Line 14: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Global database]] | [[Global database]] | ||
+ | |||
+ | [[Category: Database Tables|moodthemes]] |
Revision as of 22:04, 26 March 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) )