Difference between revisions of "Database Table: moodthemedata"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'moodthemedata =Definition= <source lang="sql"> CREATE TABLE moodthemedata ( moodthemeid int(10) unsigned NOT NULL default '0', moodid int(10) uns...')
 
Line 1: Line 1:
[[Category: Database Table|moodthemedata]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE moodthemedata (
 
CREATE TABLE moodthemedata (
Line 13: Line 13:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Global database]]
 
[[Global database]]
 +
 +
[[Category: Database Tables|moodthemedata]]

Revision as of 11:23, 2 April 2009

Definition

CREATE TABLE moodthemedata (
  moodthemeid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  moodid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  picurl VARCHAR(100) DEFAULT NULL,
  width tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  height tinyint(3) UNSIGNED NOT NULL DEFAULT '0',
  KEY (moodthemeid),
  PRIMARY KEY  (moodthemeid,moodid)
)

Relationships

Location

Global database