Line | |
---|
1 | |
---|
2 | CREATE TABLE c_send_messages_history ( |
---|
3 | c_send_messages_history_id bigint(20) NOT NULL auto_increment, |
---|
4 | subject text NOT NULL, |
---|
5 | body text NOT NULL, |
---|
6 | send_num bigint(20) NOT NULL default '0', |
---|
7 | type enum('mail','message') NOT NULL default 'mail', |
---|
8 | c_member_ids text NOT NULL, |
---|
9 | r_datetime datetime NOT NULL default '0000-00-00 00:00:00', |
---|
10 | PRIMARY KEY (c_send_messages_history_id) |
---|
11 | ) TYPE=MyISAM; |
---|
12 | |
---|
13 | |
---|
14 | CREATE TABLE c_message_queue ( |
---|
15 | c_message_queue_id bigint(20) NOT NULL auto_increment, |
---|
16 | c_member_id_from bigint(20) NOT NULL default '0', |
---|
17 | c_member_id_to bigint(20) NOT NULL default '0', |
---|
18 | subject text NOT NULL, |
---|
19 | body text NOT NULL, |
---|
20 | PRIMARY KEY (c_message_queue_id) |
---|
21 | ) TYPE=MyISAM; |
---|
Note: See
TracBrowser
for help on using the repository browser.