Difference between revisions of "Database Table: txtmsg"

From Dreamwidth Notes
Jump to: navigation, search
m (Robot: Changing Category:Database Tables)
Line 1: Line 1:
This table stores numbers and message data for text messaging. NOT specific to the TextLJ feature, which is not supported in DreamWidth.
+
{{#set:name=txtmsg|Table type=global}}
 
+
[[Description::This table stores numbers and message data for text messaging. NOT specific to the TextLJ feature, which is not supported in DreamWidth.]]
 
= Definition =
 
= Definition =
  
Line 12: Line 12:
 
)
 
)
 
</source>
 
</source>
 
+
{{Database Table Footer}}
= Relationships =
+
 
+
= Location =
+
 
+
[[Global database]]
+
 
+
[[Category:Database Tables Needing Conversion|txtmsg]]
+

Revision as of 00:25, 5 October 2009

This table stores numbers and message data for text messaging. NOT specific to the TextLJ feature, which is not supported in DreamWidth.

Definition

CREATE TABLE txtmsg (
  userid INT(10) UNSIGNED NOT NULL DEFAULT '0',
  provider VARCHAR(25) DEFAULT NULL,
  NUMBER VARCHAR(60) DEFAULT NULL,
  security enum('all','reg','friends') NOT NULL DEFAULT 'all',
  PRIMARY KEY  (userid)
)

Relationships