-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathext_tables.sql
54 lines (51 loc) · 1.46 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
47
48
49
50
51
52
53
54
CREATE TABLE tt_content (
tx_personnel tinytext,
tx_personnel_template varchar(25),
tx_personnel_images int(1) DEFAULT '0' NOT NULL,
tx_personnel_cropratio varchar(25),
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,
pages INT UNSIGNED DEFAULT 0 NOT NULL,
KEY parent (pid,sorting),
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (sys_language_uid)
);
CREATE TABLE pages (
tx_personnel_authors tinytext,
tx_personnel INT UNSIGNED DEFAULT 0 NOT NULL,
);
CREATE TABLE tx_personnel_mm (
uid_local int(11) DEFAULT '0' NOT NULL,
uid_foreign int(11) DEFAULT '0' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
sorting_foreign int(11) DEFAULT '0' NOT NULL,
tablenames varchar(255) DEFAULT '' NOT NULL,
fieldname varchar(255) DEFAULT '' NOT NULL,
PRIMARY KEY (uid_local, uid_foreign),
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);