forked from kitodo/kitodo-publication
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_tables.sql
960 lines (806 loc) · 33.5 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
#
# This file is part of the TYPO3 CMS project.
#
# It is free software; you can redistribute it and/or modify it under
# the terms of the GNU General Public License, either version 2
# of the License, or any later version.
#
# For the full copyright and license information, please read the
# LICENSE.txt file that was distributed with this source code.
#
# The TYPO3 project - inspiring people to share!
#
# Table structure for table 'tx_dpf_domain_model_documenttype'
#
CREATE TABLE tx_dpf_domain_model_documenttype (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
display_name varchar(255) DEFAULT '' NOT NULL,
virtual_type tinyint(1) unsigned DEFAULT '0' NOT NULL,
hidden_in_list tinyint(1) unsigned DEFAULT '0' NOT NULL,
metadata_page int(11) unsigned DEFAULT '0' NOT NULL,
transformation_file_output int(11) unsigned DEFAULT '0' NOT NULL,
transformation_file_input int(11) unsigned DEFAULT '0' NOT NULL,
crossref_transformation int(11) unsigned DEFAULT '0' NOT NULL,
crossref_types varchar(1024) DEFAULT '' NOT NULL,
datacite_transformation int(11) unsigned DEFAULT '0' NOT NULL,
datacite_types varchar(1024) DEFAULT '' NOT NULL,
k10plus_transformation int(11) unsigned DEFAULT '0' NOT NULL,
k10plus_types varchar(1024) DEFAULT '' NOT NULL,
pubmed_transformation int(11) unsigned DEFAULT '0' NOT NULL,
pubmed_types varchar(1024) DEFAULT '' NOT NULL,
bibtex_transformation int(11) unsigned DEFAULT '0' NOT NULL,
bibtex_types varchar(1024) DEFAULT '' NOT NULL,
riswos_transformation int(11) unsigned DEFAULT '0' NOT NULL,
riswos_types varchar(1024) DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_document'
#
CREATE TABLE tx_dpf_domain_model_document (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
title varchar(1024) DEFAULT '' NOT NULL,
xml_data mediumtext NOT NULL,
slub_info_data text NOT NULL,
document_type int(11) unsigned default '0',
object_identifier varchar(255) DEFAULT NULL,
reserved_object_identifier varchar(255) DEFAULT '' NOT NULL,
process_number varchar(255) DEFAULT '' NOT NULL,
state varchar(255) DEFAULT '' NOT NULL,
remote_last_mod_date varchar(255) DEFAULT '' NOT NULL,
transfer_status varchar(255) DEFAULT '' NOT NULL,
transfer_date int(11) DEFAULT '0' NOT NULL,
date_issued varchar(255) DEFAULT '' NOT NULL,
changed tinyint(1) unsigned DEFAULT '0' NOT NULL,
valid tinyint(1) unsigned DEFAULT '0' NOT NULL,
embargo_date int(11) unsigned DEFAULT '0' NOT NULL,
automatic_embargo tinyint(1) unsigned DEFAULT '0' NOT NULL,
file int(11) unsigned DEFAULT '0' NOT NULL,
owner int(11) unsigned default '0' NOT NULL,
creator int(11) unsigned default '0' NOT NULL,
creation_date varchar(255) DEFAULT '' NOT NULL,
temporary tinyint(1) unsigned DEFAULT '0' NOT NULL,
suggestion tinyint(1) unsigned DEFAULT '0' NOT NULL,
linked_uid varchar(255) DEFAULT '' NOT NULL,
comment varchar(1024) DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid),
);
#
# Table structure for table 'tx_dpf_domain_model_metadatagroup'
#
CREATE TABLE tx_dpf_domain_model_metadatagroup (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
display_name varchar(255) DEFAULT '' NOT NULL,
backend_only tinyint(1) unsigned DEFAULT '0' NOT NULL,
access_restriction_roles varchar(255) DEFAULT '' NOT NULL,
mandatory varchar(255) DEFAULT '' NOT NULL,
max_iteration int(11) DEFAULT '0' NOT NULL,
mapping_for_reading varchar(1024) DEFAULT '' NOT NULL,
mapping varchar(1024) DEFAULT '' NOT NULL,
mods_extension_mapping varchar(1024) DEFAULT '' NOT NULL,
mods_extension_reference varchar(1024) DEFAULT '' NOT NULL,
json_mapping varchar(1024) DEFAULT '' NOT NULL,
info_text text NOT NULL,
metadata_object int(11) unsigned DEFAULT '0' NOT NULL,
group_type varchar(50) DEFAULT '' NOT NULL,
optional_groups VARCHAR(255) DEFAULT '' NOT NULL,
required_groups VARCHAR(255) DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_metadataobject'
#
CREATE TABLE tx_dpf_domain_model_metadataobject (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
metadatagroup int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
display_name varchar(255) DEFAULT '' NOT NULL,
max_iteration int(11) DEFAULT '0' NOT NULL,
mandatory varchar(255) DEFAULT '' NOT NULL,
validator varchar(255) DEFAULT '' NOT NULL,
validation varchar(255) DEFAULT '' NOT NULL,
validation_error_message varchar(255) DEFAULT '' NOT NULL,
mapping varchar(255) DEFAULT '' NOT NULL,
mods_extension tinyint(1) unsigned DEFAULT '0' NOT NULL,
json_mapping varchar(1024) DEFAULT '' NOT NULL,
input_field int(11) DEFAULT '0' NOT NULL,
licence_options tinytext DEFAULT '' NOT NULL,
deposit_license int(11) DEFAULT '0' NOT NULL,
input_option_list int(11) unsigned default '0',
default_value text NOT NULL,
fill_out_service varchar(255) DEFAULT '' NOT NULL,
help_text text NOT NULL,
backend_only tinyint(1) unsigned DEFAULT '0' NOT NULL,
access_restriction_roles varchar(255) DEFAULT '' NOT NULL,
consent tinyint(1) unsigned DEFAULT '0' NOT NULL,
gnd_field_uid varchar(255) DEFAULT '' NOT NULL,
max_input_length int(11) DEFAULT '0' NOT NULL,
embargo tinyint(1) unsigned DEFAULT '0' NOT NULL,
fis_person_mapping varchar(50) DEFAULT '' NOT NULL,
fis_organisation_mapping varchar(50) DEFAULT '' NOT NULL,
fis_project_mapping varchar(50) DEFAULT '' NOT NULL,
gnd_person_mapping varchar(50) DEFAULT '' NOT NULL,
gnd_organisation_mapping varchar(50) DEFAULT '' NOT NULL,
ror_mapping varchar(50) DEFAULT '' NOT NULL,
zdb_mapping varchar(50) DEFAULT '' NOT NULL,
unpaywall_mapping varchar(50) DEFAULT '' NOT NULL,
orcid_person_mapping varchar(50) DEFAULT '' NOT NULL,
object_type varchar(20) DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l10n_parent int(11) DEFAULT '0' NOT NULL,
l10n_diffsource mediumblob,
sorting int(11) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid),
KEY t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_documenttransferlog'
#
CREATE TABLE tx_dpf_domain_model_documenttransferlog (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
date int(11) DEFAULT '0' NOT NULL,
response text NOT NULL,
curl_error text NOT NULL,
action varchar(255) DEFAULT '' NOT NULL,
document_uid int(11) unsigned default '0',
object_identifier varchar(255) DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_file'
#
CREATE TABLE tx_dpf_domain_model_file (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
label varchar(255) DEFAULT '',
download tinyint(4) unsigned DEFAULT '0' NOT NULL,
archive tinyint(4) unsigned DEFAULT '0' NOT NULL,
file_group_deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
content_type varchar(255) DEFAULT '' NOT NULL,
link varchar(255) DEFAULT '' NOT NULL,
status varchar(255) DEFAULT '' NOT NULL,
datastream_identifier varchar(255) DEFAULT '' NOT NULL,
primary_file tinyint(4) unsigned DEFAULT '0' NOT NULL,
file_identifier varchar(255) DEFAULT '' NOT NULL,
validation_results text,
document int(11) unsigned default '0',
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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_metadatapage'
#
CREATE TABLE tx_dpf_domain_model_metadatapage (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
documenttype int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
display_name varchar(255) DEFAULT '' NOT NULL,
page_number int(11) DEFAULT '0' NOT NULL,
metadata_group int(11) unsigned DEFAULT '0' NOT NULL,
backend_only tinyint(1) unsigned DEFAULT '0' NOT NULL,
access_restriction_roles varchar(255) DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_metadatapage_metadatagroup_mm'
#
CREATE TABLE tx_dpf_metadatapage_metadatagroup_mm (
uid_local int(11) unsigned DEFAULT '0' NOT NULL,
uid_foreign int(11) unsigned DEFAULT '0' NOT NULL,
sorting int(11) unsigned DEFAULT '0' NOT NULL,
sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL,
KEY uid_local (uid_local),
KEY uid_foreign (uid_foreign)
);
#
# Table structure for table 'tx_dpf_domain_model_client'
#
CREATE TABLE tx_dpf_domain_model_client (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
project tinytext NOT NULL,
client tinytext NOT NULL,
network_initial tinytext NOT NULL,
library_identifier tinytext NOT NULL,
owner_id tinytext NOT NULL,
admin_email tinytext NOT NULL,
replace_niss_part tinyint(1) unsigned DEFAULT '0' NOT NULL,
niss_part_search tinytext NOT NULL,
niss_part_replace tinytext NOT NULL,
file_xpath tinytext NOT NULL,
file_id_xpath tinytext NOT NULL,
file_primary_xpath tinytext NOT NULL,
file_mimetype_xpath tinytext NOT NULL,
file_href_xpath tinytext NOT NULL,
file_download_xpath tinytext NOT NULL,
file_archive_xpath tinytext NOT NULL,
file_deleted_xpath tinytext NOT NULL,
file_title_xpath tinytext NOT NULL,
state_xpath tinytext NOT NULL,
type_xpath tinytext NOT NULL,
type_xpath_input tinytext NOT NULL,
date_xpath tinytext NOT NULL,
urn_xpath tinytext NOT NULL,
primary_urn_xpath tinytext NOT NULL,
namespaces text NOT NULL,
title_xpath tinytext NOT NULL,
process_number_xpath tinytext NOT NULL,
submitter_name_xpath tinytext NOT NULL,
submitter_email_xpath tinytext NOT NULL,
submitter_notice_xpath tinytext NOT NULL,
original_source_title_xpath tinytext NOT NULL,
creator_xpath tinytext NOT NULL,
creation_date_xpath tinytext NOT NULL,
repository_creation_date_xpath tinytext NOT NULL,
repository_last_mod_date_xpath tinytext NOT NULL,
deposit_license_xpath tinytext NOT NULL,
all_notes_xpath tinytext NOT NULL,
private_notes_xpath tinytext NOT NULL,
person_xpath tinytext NOT NULL,
person_family_xpath tinytext NOT NULL,
person_given_xpath tinytext NOT NULL,
person_role_xpath tinytext NOT NULL,
person_fis_identifier_xpath tinytext NOT NULL,
person_affiliation_xpath tinytext NOT NULL,
person_affiliation_identifier_xpath tinytext NOT NULL,
person_author_role tinytext NOT NULL,
person_publisher_role tinytext NOT NULL,
fis_id_xpath tinytext NOT NULL,
source_details_xpaths text NOT NULL,
collection_xpath tinytext NOT NULL,
text_type_xpath tinytext NOT NULL,
open_access_xpath text NOT NULL,
peer_review_xpath tinytext NOT NULL,
peer_review_other_version_xpath tinytext NOT NULL,
license_xpath tinytext NOT NULL,
framework_agreement_id_xpath tinytext NOT NULL,
search_year_xpaths text NOT NULL,
publisher_xpaths text NOT NULL,
project_id_xpath tinytext NOT NULL,
project_title_xpath tinytext NOT NULL,
additional_search_title_xpaths text NOT NULL,
fis_collections tinytext NOT NULL,
fedora_host tinytext NOT NULL,
fedora_user tinytext NOT NULL,
fedora_password tinytext NOT NULL,
fedora_endpoint tinytext NOT NULL,
fedora_root_container tinytext NOT NULL,
fedora_collection_namespace tinytext NOT NULL,
elastic_search_host tinytext NOT NULL,
elastic_search_port tinytext NOT NULL,
elastic_search_index_name tinytext NOT NULL,
upload_directory tinytext NOT NULL,
upload_domain tinytext NOT NULL,
admin_new_document_notification_subject varchar(1024) DEFAULT '' NOT NULL,
admin_new_document_notification_body text NOT NULL,
submitter_new_document_notification_subject varchar(1024) DEFAULT '' NOT NULL,
submitter_new_document_notification_body text NOT NULL,
submitter_ingest_notification_subject varchar(1024) DEFAULT '' NOT NULL,
submitter_ingest_notification_body text NOT NULL,
admin_register_document_notification_subject varchar(1024) DEFAULT '' NOT NULL,
admin_register_document_notification_body text NOT NULL,
admin_new_suggestion_subject varchar(1024) DEFAULT '' NOT NULL,
admin_new_suggestion_body text NOT NULL,
admin_embargo_subject varchar(1024) DEFAULT '' NOT NULL,
admin_embargo_body text NOT NULL,
mypublications_update_notification_subject varchar(1024) DEFAULT '' NOT NULL,
mypublications_update_notification_body text NOT NULL,
mypublications_new_notification_subject varchar(1024) DEFAULT '' NOT NULL,
mypublications_new_notification_body text NOT NULL,
admin_deposit_license_notification_subject tinytext NOT NULL,
admin_deposit_license_notification_body text NOT NULL,
send_admin_deposit_license_notification tinyint(1) unsigned DEFAULT '0' NOT NULL,
suggestion_flashmessage tinytext NOT NULL,
active_messaging_suggestion_accept_url tinytext NOT NULL,
active_messaging_suggestion_decline_url tinytext NOT NULL,
active_messaging_document_deleted_url tinytext NOT NULL,
active_messaging_new_document_url tinytext NOT NULL,
active_messaging_changed_document_url tinytext NOT NULL,
active_messaging_suggestion_accept_url_body text NOT NULL,
active_messaging_suggestion_decline_url_body text NOT NULL,
active_messaging_document_deleted_url_body text NOT NULL,
active_messaging_new_document_url_body text NOT NULL,
active_messaging_changed_document_url_body text NOT NULL,
fis_mapping text NOT NULL,
crossref_transformation int(11) unsigned DEFAULT '0' NOT NULL,
datacite_transformation int(11) unsigned DEFAULT '0' NOT NULL,
k10plus_transformation int(11) unsigned DEFAULT '0' NOT NULL,
pubmed_transformation int(11) unsigned DEFAULT '0' NOT NULL,
bibtex_transformation int(11) unsigned DEFAULT '0' NOT NULL,
riswos_transformation int(11) unsigned DEFAULT '0' NOT NULL,
input_transformation int(11) unsigned DEFAULT '0' NOT NULL,
output_transformation int(11) unsigned 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_inputoptionlist'
#
CREATE TABLE tx_dpf_domain_model_inputoptionlist (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
metadataObject int(11) unsigned DEFAULT '0' NOT NULL,
name varchar(255) DEFAULT '' NOT NULL,
display_name varchar(255) DEFAULT '' NOT NULL,
value_list text NOT NULL,
value_label_list text NOT NULL,
default_value text 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) DEFAULT '0' NOT NULL,
sorting int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_transformationfile'
#
CREATE TABLE tx_dpf_domain_model_transformationfile (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
title varchar(255) DEFAULT '' NOT NULL,
label varchar(255) DEFAULT '' NOT NULL,
file int(11) unsigned NOT NULL default '0',
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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_processnumber'
#
CREATE TABLE tx_dpf_domain_model_processnumber (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
owner_id varchar(255) DEFAULT '' NOT NULL,
year int(11) unsigned DEFAULT '0' NOT NULL,
counter int(11) unsigned 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
) ENGINE=InnoDB;
#
# Table structure for table 'tx_dpf_domain_model_editinglock'
#
CREATE TABLE tx_dpf_domain_model_editinglock (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
document_identifier varchar(255) DEFAULT '' NOT NULL,
editor_uid int(11) unsigned 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid),
UNIQUE KEY uc_editinglock_document_identifier (document_identifier)
);
#
# Table extension structure for table 'fe_groups'
#
CREATE TABLE fe_groups (
kitodo_role varchar(255) DEFAULT '' NOT NULL,
access_to_groups VARCHAR(255) DEFAULT '' NOT NULL
);
#
# Table extension structure for table 'fe_users'
#
CREATE TABLE fe_users (
stored_searches int(11) DEFAULT '0' NOT NULL,
notify_on_changes tinyint(4) unsigned DEFAULT '0' NOT NULL,
notify_personal_link tinyint(4) unsigned DEFAULT '0' NOT NULL,
notify_status_change tinyint(4) unsigned DEFAULT '0' NOT NULL,
notify_fulltext_published tinyint(4) unsigned DEFAULT '0' NOT NULL,
notify_new_publication_mypublication tinyint(4) unsigned DEFAULT '0' NOT NULL,
api_token varchar(64) DEFAULT '' NOT NULL,
fis_pers_id varchar(255) DEFAULT '' NOT NULL,
orga_name varchar(255) DEFAULT '' NOT NULL,
);
#
# Table structure for table 'tx_dpf_domain_model_bookmark'
#
CREATE TABLE tx_dpf_domain_model_bookmark (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
document_identifier varchar(255) DEFAULT '' NOT NULL,
fe_user_uid int(11) unsigned 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,
# t3ver_oid int(11) DEFAULT '0' NOT NULL,
# t3ver_id int(11) DEFAULT '0' NOT NULL,
# t3ver_wsid int(11) DEFAULT '0' NOT NULL,
# t3ver_label varchar(255) DEFAULT '' NOT NULL,
# t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
# t3ver_stage int(11) DEFAULT '0' NOT NULL,
# t3ver_count int(11) DEFAULT '0' NOT NULL,
# t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
# t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
# KEY language (l10n_parent,sys_language_uid),
UNIQUE KEY uc_bookmark (pid,fe_user_uid,document_identifier)
);
#
# Table structure for table 'tx_dpf_domain_model_storedsearch'
#
CREATE TABLE tx_dpf_domain_model_storedsearch (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
fe_user int(11) DEFAULT '0' NOT NULL,
name varchar(1024) DEFAULT '' NOT NULL,
query text DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid)
);
#
# Table structure for table 'tx_dpf_domain_model_externalmetadata'
#
CREATE TABLE tx_dpf_domain_model_externalmetadata (
uid bigint NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
fe_user int(11) unsigned default '0' NOT NULL,
publication_identifier varchar(255) NOT NULL,
data text NOT NULL,
source varchar(255) NOT NULL,
record_type varchar(255) DEFAULT '' 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,
PRIMARY KEY (uid),
KEY parent (pid),
);
#
# Table structure for table 'tx_dpf_domain_model_depositlicense'
#
CREATE TABLE tx_dpf_domain_model_depositlicense (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
uri varchar(255) DEFAULT '' NOT NULL,
title varchar(1024) DEFAULT '' NOT NULL,
text text DEFAULT '' 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid),
UNIQUE KEY uc_deposit_license_uri (uri,pid)
);
#
# Table structure for table 'tx_dpf_domain_model_depositlicenselog'
#
CREATE TABLE tx_dpf_domain_model_depositlicenselog (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
username varchar(1024) DEFAULT '' NOT NULL,
licence_uri varchar(1024) DEFAULT '' NOT NULL,
title varchar(1024) DEFAULT '' NOT NULL,
object_identifier varchar(255) DEFAULT NULL,
process_number varchar(255) DEFAULT '' NOT NULL,
urn varchar(1024) DEFAULT '' NOT NULL,
file_names text 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,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(255) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage int(11) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3ver_move_id int(11) 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 t3ver_oid (t3ver_oid,t3ver_wsid),
KEY language (l10n_parent,sys_language_uid),
);