Difference between revisions of "Database Table: usermsgtext"

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

Relationships

Location

Clustered database