-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathext_tables.sql
More file actions
105 lines (86 loc) · 3.16 KB
/
Copy pathext_tables.sql
File metadata and controls
105 lines (86 loc) · 3.16 KB
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
#
# Table structure for table 'tx_tp3businessview_domain_model_tp3businessview'
#
CREATE TABLE tx_tp3businessview_domain_model_tp3businessview (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
created_by varchar(255) DEFAULT '' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
external_links varchar(255) DEFAULT '' NOT NULL,
gallery varchar(255) DEFAULT '' NOT NULL,
intro varchar(255) DEFAULT '' NOT NULL,
pano_animation varchar(255) DEFAULT '0' NOT NULL,
social_gallery varchar(255) DEFAULT '' NOT NULL,
pano_options varchar(255) DEFAULT '' NOT NULL,
contact int(11) unsigned DEFAULT '0' NOT NULL,
description text DEFAULT NULL,
panoramas int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
starttime int(11) unsigned DEFAULT '0' NOT NULL,
endtime int(11) unsigned DEFAULT '0' NOT NULL,
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l10n_parent int(11) DEFAULT '0' NOT NULL,
l10n_diffsource mediumblob,
PRIMARY KEY (uid),
KEY parent (pid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tt_address'
#
CREATE TABLE tt_address (
sorting int(11) DEFAULT '0' NOT NULL,
googleplus varchar(255) DEFAULT '' NOT NULL,
cid varchar(255) DEFAULT '' NOT NULL,
tp3businessview int(11) unsigned DEFAULT '0' NOT NULL,
);
#
# Table structure for table 'tx_tp3businessview_domain_model_panoramas'
#
CREATE TABLE tx_tp3businessview_domain_model_panoramas (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
pano_id varchar(255) DEFAULT '' NOT NULL,
heading varchar(255) DEFAULT '' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
pitch varchar(255) DEFAULT '' NOT NULL,
zoom varchar(255) DEFAULT '' NOT NULL,
position varchar(255) DEFAULT '' NOT NULL,
tp3businessviews int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
cruser_id int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
starttime int(11) unsigned DEFAULT '0' NOT NULL,
endtime int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
);
#
# Table structure for table 'pages'
#
CREATE TABLE pages (
tx_tp3businessview_onpage tinyint(4) DEFAULT '0' NOT NULL,
tx_tp3businessview_panorama int(11) DEFAULT NULL,
tx_tp3businessview_injetionpoint varchar(255) DEFAULT '' NOT NULL,
);
CREATE TABLE `tx_tp3businessview_domain_model_panoramas_mm` (
`uid` int(11) NOT NULL AUTO_INCREMENT,
`uid_local` int(11) NOT NULL,
`uid_foreign` int(11) NOT NULL,
`sorting` int(11) DEFAULT NULL,
`sorting_foreign` int(11) DEFAULT NULL,
`tablenames` varchar(100) NOT NULL DEFAULT '',
`pid` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`uid`),
KEY `sorting` (`uid_local`,`sorting`),
KEY `sorting_foreign` (`uid_foreign`),
KEY `item` (`pid`,`uid_local`)
);