Difference between revisions of "Database Table: txtmsg"
From Dreamwidth Notes
Dreamnestia (Talk | contribs) |
Exor674Bot (Talk | contribs) (Robot: Updating: Format) |
||
(4 intermediate revisions by 2 users not shown) | |||
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. | + | {{Database Table|name=txtmsg|table type=global|repo=dw-free}} |
− | + | [[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 = | ||
− | |||
<source lang="sql"> | <source lang="sql"> | ||
CREATE TABLE txtmsg ( | 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) | ||
) | ) | ||
</source> | </source> | ||
− | + | {{Database Table Footer}} | |
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + | ||
− | + |
Latest revision as of 16:02, 22 July 2010
This is a global table. 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) )