-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
26 lines (23 loc) · 919 Bytes
/
ext_tables.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
# Table structure for table 'tx_rhmajordomo_domain_model_emaillist'
#
CREATE TABLE tx_rhmajordomo_domain_model_emaillist (
digest_name varchar(255) DEFAULT '' NOT NULL,
list_name varchar(255) DEFAULT '' NOT NULL,
list_email_address varchar(255) DEFAULT '' NOT NULL,
send_ack_message_to_moderator tinyint(4) unsigned DEFAULT 0 NOT NULL,
email_moderator varchar(255) DEFAULT '' NOT NULL,
approve_passwd varchar(255) DEFAULT '' NOT NULL,
majordomo_mail_box varchar(255) DEFAULT '' NOT NULL,
is_one_way_list tinyint(4) unsigned DEFAULT 0 NOT NULL,
description text DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_rhmajordomo_domain_model_emailverification'
#
CREATE TABLE tx_rhmajordomo_domain_model_emailverification (
emaillist_id int(11) NOT NULL,
email_hash varchar(255) NOT NULL,
secret varchar(255) NOT NULL,
register tinyint(4) unsigned DEFAULT 0 NOT NULL,
);