Difference between revisions of "Database Table: usermsgtext"
From Dreamwidth Notes
(Created page with 'usermsgtext =Definition= <source lang="sql"> CREATE TABLE usermsgtext ( 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 usermsgtext ( | CREATE TABLE usermsgtext ( | ||
Line 11: | Line 11: | ||
</source> | </source> | ||
− | =Relationships= | + | = Relationships = |
+ | |||
+ | = Location = | ||
− | |||
[[Clustered database]] | [[Clustered database]] | ||
+ | |||
+ | [[Category: Database Tables|usermsgtext]] |
Revision as of 10:31, 4 April 2009
Definition
CREATE TABLE usermsgtext ( journalid INT UNSIGNED NOT NULL, msgid INT UNSIGNED NOT NULL, subject VARCHAR(255) BINARY, body BLOB NOT NULL, PRIMARY KEY (journalid,msgid) )