Difference between revisions of "Database Table: usermsgprop"
From Dreamwidth Notes
(Created page with 'usermsgprop =Definition= <source lang="sql"> CREATE TABLE usermsgprop ( journalid INT UNSIGNED NOT NULL, msgid INT UNSIGNED NOT NULL, ...') |
Dreamnestia (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | + | = Definition = | |
− | =Definition= | + | |
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE usermsgprop ( | CREATE TABLE usermsgprop ( | ||
Line 11: | Line 11: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = 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) )