forked from evoWeb/sf_register
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
executable file
·26 lines (25 loc) · 1021 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 'fe_users'
#
CREATE TABLE fe_users (
mailhash varchar(60) DEFAULT '',
activated_on int(11) unsigned DEFAULT '0' NOT NULL,
pseudonym varchar(50) DEFAULT '',
gender int(11) unsigned DEFAULT '0' NOT NULL,
date_of_birth int(11) DEFAULT '0' NOT NULL,
language char(2) DEFAULT '' NOT NULL,
zone varchar(45) DEFAULT '' NOT NULL,
static_info_country char(3) DEFAULT '' NOT NULL,
timezone float DEFAULT '0' NOT NULL,
daylight tinyint(4) unsigned DEFAULT '0' NOT NULL,
mobilephone varchar(20) DEFAULT '' NOT NULL,
gtc tinyint(4) unsigned DEFAULT '0' NOT NULL,
privacy tinyint(4) unsigned DEFAULT '0' NOT NULL,
status int(11) unsigned DEFAULT '0' NOT NULL,
by_invitation tinyint(4) unsigned DEFAULT '0' NOT NULL,
comments text NOT NULL,
module_sys_dmail_newsletter tinyint(3) unsigned DEFAULT '0' NOT NULL,
module_sys_dmail_html tinyint(3) unsigned DEFAULT '0' NOT NULL,
module_sys_dmail_category int(10) unsigned DEFAULT '0' NOT NULL,
email_new varchar(80) DEFAULT '' NOT NULL
);