Difference between revisions of "Database Table: usermsgprop"

From Dreamwidth Notes
Jump to: navigation, search
(Created page with 'usermsgprop =Definition= <source lang="sql"> CREATE TABLE usermsgprop ( journalid INT UNSIGNED NOT NULL, msgid INT UNSIGNED NOT NULL, ...')
 
Line 1: Line 1:
[[Category: Database Table|usermsgprop]]
+
= Definition =
=Definition=
+
 
 
<source lang="sql">
 
<source lang="sql">
 
CREATE TABLE usermsgprop (
 
CREATE TABLE usermsgprop (
Line 11: Line 11:
 
</source>
 
</source>
  
=Relationships=
+
= Relationships =
 +
 
 +
= Location =
  
=Location=
 
 
[[Clustered database]]
 
[[Clustered database]]
 +
 +
[[Category: Database Tables|usermsgprop]]

Revision as of 10:43, 4 April 2009

Definition

CREATE TABLE usermsgprop (
  journalid    INT UNSIGNED NOT NULL,
  msgid        INT UNSIGNED NOT NULL,
  propid       SMALLINT UNSIGNED NOT NULL,
  propval      VARCHAR(255) NOT NULL,
  PRIMARY KEY (journalid,msgid,propid)
)

Relationships

Location

Clustered database