This repository has been archived by the owner on Nov 19, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ext_tables.sql
1138 lines (1024 loc) · 31.4 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
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# INDEX
# -----
# tx_org_cal
# tx_org_calentrance
# tx_org_caltype
# tx_org_downloads
# tx_org_downloadscat
# tx_org_downloadsmedia
# tx_org_event
# tx_org_eventcat
# tx_org_headquarters
# tx_org_headquarterscat
# tx_org_job
# tx_org_jobcat
# tx_org_jobsector
# tx_org_jobworkinghours
# tx_org_location
# tx_org_locationcat
# tx_org_news
# tx_org_newscat
# tx_org_newsgroup
# tx_org_service
# tx_org_servicecat
# tx_org_servicesector
# tx_org_servicetargetgroup
# tx_org_staff
# tx_org_staffgroup
# tx_org_tax
# tx_org_mm_all
#
# tx_org_cal
#
CREATE TABLE tx_org_cal (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned NOT NULL DEFAULT '0',
tstamp int(11) unsigned NOT NULL DEFAULT '0',
crdate int(11) unsigned NOT NULL DEFAULT '0',
cruser_id int(11) unsigned NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
deleted tinyint(4) unsigned NOT NULL DEFAULT '0',
type tinytext,
title tinytext,
subtitle tinytext,
datetime int(11) unsigned NOT NULL DEFAULT '0',
datetimeend int(11) unsigned NOT NULL DEFAULT '0',
bodytext mediumtext ,
embeddedcode text,
endtime int(11) NOT NULL DEFAULT '0',
fe_group int(11) NOT NULL DEFAULT '0',
hidden tinyint(4) unsigned NOT NULL DEFAULT '0',
image text,
imagecaption text,
imageseo text,
imageheight tinytext,
imagewidth tinytext,
imageorient tinyint(4) unsigned NOT NULL default '0',
imagecaption text,
imagecols tinyint(4) unsigned NOT NULL default '0',
imageborder tinyint(4) unsigned NOT NULL default '0',
imagecaption_position varchar(12) default '',
image_link text,
image_zoom tinyint(3) unsigned NOT NULL default '0',
image_noRows tinyint(3) unsigned NOT NULL default '0',
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
image_frames tinyint(3) unsigned NOT NULL default '0',
marginal_title tinytext,
marginal_subtitle tinytext,
marginal_short text,
page tinytext,
pages tinytext,
print text,
printcaption text,
printseo tinytext,
seo_description text,
seo_keywords text,
starttime int(11) NOT NULL DEFAULT '0',
teaser_title tinytext,
teaser_subtitle tinytext,
teaser_short mediumtext,
tx_org_caltype tinytext,
tx_org_event tinytext,
tx_org_location tinytext,
tx_org_calentrance tinytext,
tx_org_headquarters tinytext,
tx_org_staff tinytext,
url tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_calentrance
#
CREATE TABLE tx_org_calentrance (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned NOT NULL DEFAULT '0',
tstamp int(11) unsigned NOT NULL DEFAULT '0',
crdate int(11) unsigned NOT NULL DEFAULT '0',
cruser_id int(11) unsigned NOT NULL DEFAULT '0',
deleted tinyint(4) unsigned NOT NULL DEFAULT '0',
title tinytext,
title_lang_ol tinytext,
value tinytext,
tx_org_tax tinytext,
hidden tinyint(4) NOT NULL DEFAULT '0',
starttime int(11) NOT NULL DEFAULT '0',
endtime int(11) NOT NULL DEFAULT '0',
fe_group varchar(100) NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_caltype
#
CREATE TABLE tx_org_caltype (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) unsigned NOT NULL DEFAULT '0',
crdate int(11) unsigned NOT NULL DEFAULT '0',
cruser_id int(11) unsigned NOT NULL DEFAULT '0',
deleted tinyint(4) unsigned NOT NULL DEFAULT '0',
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
title tinytext,
title_lang_ol tinytext,
tx_org_cal tinytext,
hidden tinyint(4) NOT NULL DEFAULT '0',
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_downloads
#
CREATE TABLE tx_org_downloads (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
deleted tinyint(4) NOT NULL DEFAULT '0',
bodytext mediumtext ,
datetime int(11) unsigned NOT NULL DEFAULT '0',
documents text,
documents_from_path tinytext,
documentscaption tinytext,
documentslayout tinyint(4) unsigned NOT NULL DEFAULT '0',
documentssize tinyint(4) unsigned NOT NULL DEFAULT '0',
documents_display_label tinyint(4) unsigned NOT NULL DEFAULT '0',
documents_display_caption tinyint(4) unsigned NOT NULL DEFAULT '0',
endtime int(11) NOT NULL DEFAULT '0',
fe_group varchar(100) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
linkicon_height tinytext,
linkicon_width tinytext,
pages tinytext,
seo_description text,
seo_keywords text,
starttime int(11) NOT NULL DEFAULT '0',
statistics_hits int(11) NOT NULL DEFAULT '0',
statistics_visits int(11) NOT NULL DEFAULT '0',
statistics_downloads int(11) NOT NULL DEFAULT '0',
statistics_downloads_by_visits int(11) NOT NULL DEFAULT '0',
subtitle tinytext,
teaser_title tinytext,
teaser_subtitle tinytext,
teaser_short text,
thumbnail text,
thumbnail_height tinytext,
thumbnail_width tinytext,
title tinytext,
tx_flipit_evaluate tinytext,
tx_flipit_fancybox tinytext,
tx_flipit_layout tinytext,
tx_flipit_pagelist tinytext,
tx_flipit_quality tinytext,
tx_flipit_swf_files text,
tx_flipit_updateswfxml tinytext,
tx_flipit_xml_file text,
tx_org_downloadscat tinytext,
tx_org_downloadsmedia tinytext,
tx_org_staff tinytext,
type tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_downloadscat
#
CREATE TABLE tx_org_downloadscat (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
sorting int(10) unsigned NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
type tinytext,
title tinytext,
title_lang_ol tinytext,
text text,
text_lang_ol text,
color tinytext,
image text,
imageseo text,
imageseo_lang_ol text,
imageheight tinytext,
imagewidth tinytext,
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_downloadsmedia
#
CREATE TABLE tx_org_downloadsmedia (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
sorting int(10) unsigned NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
type tinytext,
title tinytext,
title_lang_ol tinytext,
text text,
text_lang_ol text,
color tinytext,
image text,
imageseo text,
imageseo_lang_ol text,
imageheight tinytext,
imagewidth tinytext,
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_event
#
CREATE TABLE tx_org_event (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned NOT NULL DEFAULT '0',
tstamp int(11) unsigned NOT NULL DEFAULT '0',
crdate int(11) unsigned NOT NULL DEFAULT '0',
cruser_id int(11) unsigned NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
deleted tinyint(4) unsigned NOT NULL DEFAULT '0',
title tinytext,
subtitle tinytext,
teaser_title tinytext,
teaser_subtitle tinytext,
teaser_short mediumtext,
bodytext mediumtext ,
documents_from_path tinytext,
documents text,
documentscaption tinytext,
documentslayout tinyint(4) unsigned NOT NULL DEFAULT '0',
documentssize tinyint(4) unsigned NOT NULL DEFAULT '0',
fe_group int(11) NOT NULL DEFAULT '0',
hidden tinyint(4) unsigned NOT NULL DEFAULT '0',
image text,
imagecaption text,
imageseo text,
imageheight tinytext,
imagewidth tinytext,
imageorient tinyint(4) unsigned NOT NULL default '0',
imagecaption text,
imagecols tinyint(4) unsigned NOT NULL default '0',
imageborder tinyint(4) unsigned NOT NULL default '0',
imagecaption_position varchar(12) default '',
image_link text,
image_zoom tinyint(3) unsigned NOT NULL default '0',
image_noRows tinyint(3) unsigned NOT NULL default '0',
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
image_frames tinyint(3) unsigned NOT NULL default '0',
length tinytext,
page tinytext,
pages tinytext,
seo_description text,
seo_keywords text,
tx_org_cal tinytext,
tx_org_eventcat tinytext,
tx_org_headquarters tinytext,
tx_org_news tinytext,
tx_org_staff tinytext,
type tinytext,
url tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_eventcat
#
CREATE TABLE tx_org_eventcat (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
title tinytext,
title_lang_ol tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_headquarters
#
CREATE TABLE tx_org_headquarters (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) unsigned NOT NULL DEFAULT '0',
crdate int(11) unsigned NOT NULL DEFAULT '0',
cruser_id int(11) unsigned NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
sorting int(11) unsigned NOT NULL DEFAULT '0',
deleted tinyint(4) unsigned NOT NULL DEFAULT '0',
hidden tinyint(4) unsigned NOT NULL DEFAULT '0',
bodytext text,
documents_from_path tinytext,
documents text,
documentscaption tinytext,
documentslayout tinyint(4) unsigned NOT NULL DEFAULT '0',
documentssize tinyint(4) unsigned NOT NULL DEFAULT '0',
email tinytext,
embeddedcode text,
fax tinytext,
fe_group int(11) NOT NULL DEFAULT '0',
geoupdateprompt text,
geoupdateforbidden tinyint(4) unsigned NOT NULL DEFAULT '0',
image text,
imagecaption text,
imageseo text,
imageheight tinytext,
imagewidth tinytext,
imageorient tinyint(4) unsigned NOT NULL default '0',
imagecaption text,
imagecols tinyint(4) unsigned NOT NULL default '0',
imageborder tinyint(4) unsigned NOT NULL default '0',
imagecaption_position varchar(12) default '',
image_link text,
image_zoom tinyint(3) unsigned NOT NULL default '0',
image_noRows tinyint(3) unsigned NOT NULL default '0',
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
image_frames tinyint(3) unsigned NOT NULL default '0',
mail_address text ,
mail_postcode tinytext,
mail_city tinytext,
mail_country tinytext,
mail_lat text ,
mail_lon text ,
mail_street text ,
mail_url text ,
mail_zip tinytext,
mail_embeddedcode text,
manager tinytext,
marginal_title tinytext,
marginal_short text,
migratedtable tinytext,
migrateduid int(11) unsigned DEFAULT '0' NOT NULL,
page tinytext,
pages tinytext,
postbox_city tinytext,
postbox_postbox text ,
postbox_postcode tinytext,
pubtrans_embeddedcode text,
pubtrans_stop mediumtext ,
pubtrans_url tinytext,
seo_description text,
seo_keywords text,
teaser_title tinytext,
teaser_short text,
telephone tinytext,
title tinytext,
tx_org_cal tinytext,
tx_org_headquarterscat tinytext,
tx_org_job tinytext,
tx_org_location tinytext,
tx_org_news tinytext,
tx_org_service tinytext,
tx_org_staff tinytext,
type tinytext,
url tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_headquarterscat
#
CREATE TABLE tx_org_headquarterscat (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
sorting int(10) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
title tinytext,
title_lang_ol tinytext,
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_job
#
CREATE TABLE tx_org_job (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
fe_cruser_id int(11) NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
starttime int(11) NOT NULL DEFAULT '0',
endtime int(11) NOT NULL DEFAULT '0',
applicationaddress tinytext,
applicationurl tinytext,
dateofentry int(11) NOT NULL DEFAULT '0',
description text,
documents_from_path tinytext,
documents text,
documentscaption tinytext,
documentslayout tinyint(4) unsigned NOT NULL DEFAULT '0',
documentssize tinyint(4) unsigned NOT NULL DEFAULT '0',
fe_group int(11) NOT NULL DEFAULT '0',
geoupdateprompt text,
geoupdateforbidden tinyint(4) unsigned NOT NULL DEFAULT '0',
image text,
imagecaption text,
imageseo text,
imageheight tinytext,
imagewidth tinytext,
imageorient tinyint(4) unsigned NOT NULL default '0',
imagecaption text,
imagecols tinyint(4) unsigned NOT NULL default '0',
imageborder tinyint(4) unsigned NOT NULL default '0',
imagecaption_position varchar(12) default '',
image_link text,
image_zoom tinyint(3) unsigned NOT NULL default '0',
image_noRows tinyint(3) unsigned NOT NULL default '0',
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
image_frames tinyint(3) unsigned NOT NULL default '0',
lengthoftime tinytext,
location tinytext,
mail_address tinytext,
mail_city tinytext,
mail_country tinytext,
mail_lat text ,
mail_lon text ,
mail_street text ,
mail_zip tinytext,
marginal_title tinytext,
marginal_short text,
newsletter tinyint(4) NOT NULL DEFAULT '1',
onlineapplication tinyint(3) unsigned NOT NULL default '0',
page tinytext,
quantity tinytext,
reference_number tinytext,
seo_description text,
seo_keywords text,
specification text,
teaser_title tinytext,
teaser_short text,
thirdparty_id tinytext,
title tinytext,
tx_org_headquarters tinytext,
tx_org_jobcat tinytext,
tx_org_jobsector tinytext,
tx_org_jobworkinghours tinytext,
tx_org_staff tinytext,
type tinytext,
url tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_jobcat
#
CREATE TABLE tx_org_jobcat (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
title tinytext,
title_lang_ol tinytext,
thirdparty_id tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_jobsector
#
CREATE TABLE tx_org_jobsector (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
title tinytext,
title_lang_ol tinytext,
thirdparty_id tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_jobworkinghours
#
CREATE TABLE tx_org_jobworkinghours (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
title tinytext,
title_lang_ol tinytext,
thirdparty_id tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_location
#
CREATE TABLE tx_org_location (
uid int(11) unsigned DEFAULT '0' NOT NULL auto_increment,
pid int(11) unsigned NOT NULL DEFAULT '0',
tstamp int(11) unsigned NOT NULL DEFAULT '0',
crdate int(11) unsigned NOT NULL DEFAULT '0',
cruser_id int(11) unsigned NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
sorting int(11) unsigned NOT NULL DEFAULT '0',
deleted tinyint(4) unsigned NOT NULL DEFAULT '0',
title tinytext,
bodytext text,
geoupdateprompt text,
geoupdateforbidden tinyint(4) unsigned NOT NULL DEFAULT '0',
mail_address text ,
mail_postcode tinytext,
mail_city tinytext,
mail_country tinytext,
mail_lat text,
mail_lon text,
mail_url text,
mail_embeddedcode text,
mail_street text,
mail_zip tinytext,
telephone tinytext,
ticket_telephone tinytext,
ticket_url tinytext,
fax tinytext,
email tinytext,
pubtrans_stop mediumtext ,
pubtrans_url tinytext,
pubtrans_embeddedcode text,
citymap_url tinytext,
citymap_embeddedcode text,
image text,
imagecaption text,
imageseo text,
imageheight tinytext,
imagewidth tinytext,
imageorient tinyint(4) unsigned NOT NULL default '0',
imagecaption text,
imagecols tinyint(4) unsigned NOT NULL default '0',
imageborder tinyint(4) unsigned NOT NULL default '0',
imagecaption_position varchar(12) default '',
image_link text,
image_zoom tinyint(3) unsigned NOT NULL default '0',
image_noRows tinyint(3) unsigned NOT NULL default '0',
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
image_frames tinyint(3) unsigned NOT NULL default '0',
embeddedcode text,
documents_from_path tinytext,
documents text,
documentscaption tinytext,
documentslayout tinyint(4) unsigned NOT NULL DEFAULT '0',
documentssize tinyint(4) unsigned NOT NULL DEFAULT '0',
hidden tinyint(4) unsigned NOT NULL DEFAULT '0',
page tinytext,
pages tinytext,
fe_group int(11) NOT NULL DEFAULT '0',
seo_description text,
seo_keywords text,
tx_org_cal tinytext,
tx_org_headquarters tinytext,
tx_org_locationcat tinytext,
tx_org_staff tinytext,
type tinytext,
url tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_locationcat
#
CREATE TABLE tx_org_locationcat (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
sorting int(10) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
title tinytext,
title_lang_ol tinytext,
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_news
#
CREATE TABLE tx_org_news (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
deleted tinyint(4) NOT NULL DEFAULT '0',
archivedate int(11) unsigned NOT NULL DEFAULT '0',
bodytext mediumtext ,
datetime int(11) unsigned NOT NULL DEFAULT '0',
documents_from_path tinytext,
documents text,
documentscaption tinytext,
documentslayout tinyint(4) unsigned NOT NULL DEFAULT '0',
documentssize tinyint(4) unsigned NOT NULL DEFAULT '0',
embeddedcode text,
endtime int(11) NOT NULL DEFAULT '0',
fe_group varchar(100) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
marginal_title tinytext,
marginal_subtitle tinytext,
marginal_short text,
image text,
imagecaption text,
imageseo text,
imageheight tinytext,
imagewidth tinytext,
imageorient tinyint(4) unsigned NOT NULL default '0',
imagecaption text,
imagecols tinyint(4) unsigned NOT NULL default '0',
imageborder tinyint(4) unsigned NOT NULL default '0',
imagecaption_position varchar(12) default '',
image_1stforlistonly tinyint(3) unsigned NOT NULL default '0',
image_link text,
image_zoom tinyint(3) unsigned NOT NULL default '0',
image_noRows tinyint(3) unsigned NOT NULL default '0',
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
image_frames tinyint(3) unsigned NOT NULL default '0',
page tinytext,
pages tinytext,
seo_keywords text,
seo_description text,
starttime int(11) NOT NULL DEFAULT '0',
subtitle tinytext,
teaser_title tinytext,
teaser_subtitle tinytext,
teaser_short text,
title tinytext,
topnews tinyint(4) unsigned NOT NULL DEFAULT '0',
topnews_sorting tinyint(4) unsigned NOT NULL DEFAULT '1',
tx_org_event tinytext,
tx_org_headquarters tinytext,
tx_org_newscat tinytext,
tx_org_newsgroup tinytext,
tx_org_staff tinytext,
type tinytext,
url tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_newscat
#
# #32223 Category tree, 111130, dwildt+, uid_parent
CREATE TABLE tx_org_newscat (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
title tinytext,
title_lang_ol tinytext,
image text,
imagecaption text,
imageseo text,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_newsgroup
#
CREATE TABLE tx_org_newsgroup (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
title tinytext,
title_lang_ol tinytext,
image text,
imagecaption text,
imageseo text,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_service
#
CREATE TABLE tx_org_service (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
sys_language_uid int(11) NOT NULL DEFAULT '0',
l10n_parent int(11) NOT NULL DEFAULT '0',
l10n_diffsource mediumtext,
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
starttime int(11) NOT NULL DEFAULT '0',
endtime int(11) NOT NULL DEFAULT '0',
description text,
documents_from_path tinytext,
documents text,
documentscaption tinytext,
documentslayout tinyint(4) unsigned NOT NULL DEFAULT '0',
documentssize tinyint(4) unsigned NOT NULL DEFAULT '0',
fe_group int(11) NOT NULL DEFAULT '0',
geoupdateprompt text,
geoupdateforbidden tinyint(4) unsigned NOT NULL DEFAULT '0',
image text,
imagecaption text,
imageseo text,
imageheight tinytext,
imagewidth tinytext,
imageorient tinyint(4) unsigned NOT NULL default '0',
imagecaption text,
imagecols tinyint(4) unsigned NOT NULL default '0',
imageborder tinyint(4) unsigned NOT NULL default '0',
imagecaption_position varchar(12) default '',
image_link text,
image_zoom tinyint(3) unsigned NOT NULL default '0',
image_noRows tinyint(3) unsigned NOT NULL default '0',
image_effects tinyint(3) unsigned NOT NULL default '0',
image_compression tinyint(3) unsigned NOT NULL default '0',
image_frames tinyint(3) unsigned NOT NULL default '0',
location tinytext,
mail_address tinytext,
mail_city tinytext,
mail_country tinytext,
mail_lat text ,
mail_lon text ,
mail_street text ,
mail_zip tinytext,
marginal_title tinytext,
marginal_short text,
page tinytext,
reference_number tinytext,
seo_description text,
seo_keywords text,
teaser_title tinytext,
teaser_short text,
thirdparty_id tinytext,
title tinytext,
tx_org_headquarters tinytext,
tx_org_servicecat tinytext,
tx_org_servicesector tinytext,
tx_org_servicetargetgroup tinytext,
tx_org_staff tinytext,
type tinytext,
url tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_servicecat
#
CREATE TABLE tx_org_servicecat (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
title tinytext,
title_lang_ol tinytext,
thirdparty_id tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_servicesector
#
CREATE TABLE tx_org_servicesector (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
title tinytext,
title_lang_ol tinytext,
thirdparty_id tinytext,
PRIMARY KEY (uid),
KEY parent (pid)
);
#
# tx_org_servicetargetgroup
#
CREATE TABLE tx_org_servicetargetgroup (
uid int(11) NOT NULL auto_increment,
pid int(11) NOT NULL DEFAULT '0',
uid_parent int(11) NOT NULL DEFAULT '0',
tstamp int(11) NOT NULL DEFAULT '0',
crdate int(11) NOT NULL DEFAULT '0',
cruser_id int(11) NOT NULL DEFAULT '0',
deleted tinyint(4) NOT NULL DEFAULT '0',
hidden tinyint(4) NOT NULL DEFAULT '0',
icons text,
icon_offset_x int(11) NOT NULL DEFAULT '0',
icon_offset_y int(11) DEFAULT '0' NOT NULL
title tinytext,
title_lang_ol tinytext,
thirdparty_id tinytext,