forked from t3brightside/personnel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathext_tables.sql
46 lines (42 loc) · 1.07 KB
/
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
CREATE TABLE tt_content (
tx_personnel tinytext,
tx_personnel_template varchar(25),
tx_personnel_images int(1) DEFAULT '0' NOT NULL,
tx_personnel_vcard int(1) DEFAULT '0' NOT NULL,
tx_personnel_information int(1) DEFAULT '0' NOT NULL,
tx_personnel_orderby tinytext,
tx_personnel_startfrom varchar(6),
tx_personnel_limit varchar(6),
tx_personnel_titlewrap varchar(2),
);
CREATE TABLE tx_personnel_domain_model_person (
title tinytext,
firstname tinytext,
lastname tinytext,
profession tinytext,
responsibility tinytext,
info text,
phone tinytext,
email tinytext,
images int(11) unsigned DEFAULT '0',
selected_categories text,
linkedin tinytext,
xing tinytext,
twitter tinytext,
github tinytext,
instagram tinytext,
youtube tinytext,
facebook tinytext,
website tinytext,
KEY parent (pid,sorting),
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (sys_language_uid)
);
CREATE TABLE pages (
tx_personnel_authors tinytext,
);
CREATE TABLE tx_news_domain_model_news (
uid int(11) NOT NULL auto_increment,
tx_personnel_authors tinytext,
PRIMARY KEY (uid),
);