Newer
Older
SET client_encoding = 'UTF8';
SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET escape_string_warning = off;
--DROP PROCEDURAL LANGUAGE IF EXISTS plpgsql CASCADE;
--CREATE PROCEDURAL LANGUAGE plpgsql;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
CREATE SEQUENCE actions_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE actions
(
id integer NOT NULL DEFAULT nextval('actions_id_seq'::regclass),
keyword character varying(32) NOT NULL DEFAULT ''::bpchar,
label_action character varying(255),
id_status character varying(10),
is_system character(1) NOT NULL DEFAULT 'N'::bpchar,
Yves Christian KPAKPO
committed
is_folder_action character(1) NOT NULL DEFAULT 'N'::bpchar,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
action_page character varying(255),
history character(1) NOT NULL DEFAULT 'N'::bpchar,
origin character varying(255) NOT NULL DEFAULT 'apps'::bpchar,
create_id character(1) NOT NULL DEFAULT 'N'::bpchar,
CONSTRAINT actions_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
CREATE TABLE docserver_types
(
docserver_type_id character varying(32) NOT NULL,
docserver_type_label character varying(255) DEFAULT NULL::character varying,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
is_container character(1) NOT NULL DEFAULT 'N'::bpchar,
container_max_number integer NOT NULL DEFAULT (0)::integer,
is_compressed character(1) NOT NULL DEFAULT 'N'::bpchar,
compression_mode character varying(32) DEFAULT NULL::character varying,
meta_template character varying(32) DEFAULT NULL::character varying,
log_template character varying(32) DEFAULT NULL::character varying,
fingerprint_mode character varying(32) DEFAULT NULL::character varying,
CONSTRAINT docserver_types_pkey PRIMARY KEY (docserver_type_id)
)
WITH (OIDS=FALSE);
CREATE TABLE docservers
(
docserver_id character varying(32) NOT NULL DEFAULT '1'::character varying,
docserver_type_id character varying(32) NOT NULL,
device_label character varying(255) DEFAULT NULL::character varying,
is_readonly character(1) NOT NULL DEFAULT 'N'::bpchar,
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
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
size_limit_number bigint NOT NULL DEFAULT (0)::bigint,
actual_size_number bigint NOT NULL DEFAULT (0)::bigint,
path_template character varying(255) NOT NULL,
ext_docserver_info character varying(255) DEFAULT NULL::character varying,
chain_before character varying(32) DEFAULT NULL::character varying,
chain_after character varying(32) DEFAULT NULL::character varying,
creation_date timestamp without time zone NOT NULL,
closing_date timestamp without time zone,
coll_id character varying(32) NOT NULL DEFAULT 'coll_1'::character varying,
priority_number integer NOT NULL DEFAULT 10,
docserver_location_id character varying(32) NOT NULL,
adr_priority_number integer NOT NULL DEFAULT 1,
CONSTRAINT docservers_pkey PRIMARY KEY (docserver_id)
)
WITH (OIDS=FALSE);
CREATE TABLE docserver_locations
(
docserver_location_id character varying(32) NOT NULL,
ipv4 character varying(255) DEFAULT NULL::character varying,
ipv6 character varying(255) DEFAULT NULL::character varying,
net_domain character varying(32) DEFAULT NULL::character varying,
mask character varying(255) DEFAULT NULL::character varying,
net_link character varying(255) DEFAULT NULL::character varying,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
CONSTRAINT docserver_locations_pkey PRIMARY KEY (docserver_location_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE doctypes_type_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
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
CACHE 1;
CREATE TABLE doctypes
(
coll_id character varying(32) NOT NULL DEFAULT ''::character varying,
type_id integer NOT NULL DEFAULT nextval('doctypes_type_id_seq'::regclass),
description character varying(255) NOT NULL DEFAULT ''::character varying,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
doctypes_first_level_id integer,
doctypes_second_level_id integer,
primary_retention character varying(50) DEFAULT NULL,
secondary_retention character varying(50) DEFAULT NULL,
CONSTRAINT doctypes_pkey PRIMARY KEY (type_id)
)
WITH (OIDS=FALSE);
CREATE TABLE ext_docserver
(
doc_id character varying(255) NOT NULL,
path character varying(255) NOT NULL,
CONSTRAINT ext_docserver_pkey PRIMARY KEY (doc_id)
)
WITH (OIDS=FALSE);
CREATE TABLE groupsecurity
(
group_id character varying(32) NOT NULL,
resgroup_id character varying(32) NOT NULL,
can_view character(1) NOT NULL,
can_add character(1) NOT NULL,
can_delete character(1) NOT NULL,
CONSTRAINT groupsecurity_pkey PRIMARY KEY (group_id, resgroup_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE history_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE history
(
id bigint NOT NULL DEFAULT nextval('history_id_seq'::regclass),
table_name character varying(32) DEFAULT NULL::character varying,
record_id character varying(255) DEFAULT NULL::character varying,
event_type character varying(32) NOT NULL,
user_id character varying(128) NOT NULL,
event_date timestamp without time zone NOT NULL,
info text,
id_module character varying(50) NOT NULL DEFAULT 'admin'::character varying,
remote_ip character varying(32) DEFAULT NULL,
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
CONSTRAINT history_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE history_batch_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE history_batch
(
id bigint NOT NULL DEFAULT nextval('history_batch_id_seq'::regclass),
module_name character varying(32) DEFAULT NULL::character varying,
batch_id bigint DEFAULT NULL::bigint,
event_date timestamp without time zone NOT NULL,
total_processed bigint DEFAULT NULL::bigint,
total_errors bigint DEFAULT NULL::bigint,
info text,
CONSTRAINT history_batch_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
CREATE TABLE parameters
(
id character varying(255) NOT NULL,
param_value_string character varying(255) DEFAULT NULL::character varying,
param_value_int integer,
param_value_date timestamp without time zone,
CONSTRAINT parameters_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
CREATE TABLE resgroup_content
(
coll_id character varying(32) NOT NULL,
res_id bigint NOT NULL,
resgroup_id character varying(32) NOT NULL,
"sequence" integer NOT NULL,
CONSTRAINT resgroup_content_pkey PRIMARY KEY (coll_id, res_id, resgroup_id)
)
WITH (OIDS=FALSE);
CREATE TABLE resgroups
(
resgroup_id character varying(32) NOT NULL,
resgroup_desc character varying(255) NOT NULL,
created_by character varying(255) NOT NULL,
creation_date timestamp without time zone NOT NULL,
CONSTRAINT resgroups_pkey PRIMARY KEY (resgroup_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE security_security_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE "security"
(
security_id bigint NOT NULL DEFAULT nextval('security_security_id_seq'::regclass),
group_id character varying(32) NOT NULL,
coll_id character varying(32) NOT NULL,
where_clause text,
maarch_comment text,
can_insert character(1) NOT NULL DEFAULT 'N'::bpchar,
can_update character(1) NOT NULL DEFAULT 'N'::bpchar,
can_delete character(1) NOT NULL DEFAULT 'N'::bpchar,
rights_bitmask integer NOT NULL DEFAULT 0,
mr_start_date timestamp without time zone DEFAULT NULL,
mr_stop_date timestamp without time zone DEFAULT NULL,
where_target character varying(15) DEFAULT 'DOC'::character varying,
CONSTRAINT security_pkey PRIMARY KEY (security_id)
)
WITH (OIDS=FALSE);
CREATE TABLE status
(
id character varying(10) NOT NULL,
label_status character varying(50) NOT NULL,
is_system character(1) NOT NULL DEFAULT 'Y'::bpchar,
Yves Christian KPAKPO
committed
is_folder_status character(1) NOT NULL default 'N'::bpchar,
img_filename character varying(255),
maarch_module character varying(255) NOT NULL DEFAULT 'apps'::character varying,
can_be_searched character(1) NOT NULL DEFAULT 'Y'::bpchar,
can_be_modified character(1) NOT NULL DEFAULT 'Y'::bpchar,
CONSTRAINT status_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
CREATE TABLE usergroup_content
(
user_id character varying(128) NOT NULL,
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
group_id character varying(32) NOT NULL,
primary_group character(1) NOT NULL,
"role" character varying(255) DEFAULT NULL::character varying,
CONSTRAINT usergroup_content_pkey PRIMARY KEY (user_id, group_id)
)
WITH (OIDS=FALSE);
CREATE TABLE usergroups
(
group_id character varying(32) NOT NULL,
group_desc character varying(255) DEFAULT NULL::character varying,
administrator character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_right1 character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_right2 character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_right3 character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_right4 character(1) NOT NULL DEFAULT 'N'::bpchar,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
CONSTRAINT usergroups_pkey PRIMARY KEY (group_id)
)
WITH (OIDS=FALSE);
CREATE TABLE usergroups_services
(
group_id character varying NOT NULL,
service_id character varying NOT NULL,
CONSTRAINT usergroups_services_pkey PRIMARY KEY (group_id, service_id)
)
WITH (OIDS=FALSE);
CREATE TABLE users
(
user_id character varying(128) NOT NULL,
"password" character varying(255) DEFAULT NULL::character varying,
firstname character varying(255) DEFAULT NULL::character varying,
lastname character varying(255) DEFAULT NULL::character varying,
phone character varying(32) DEFAULT NULL::character varying,
mail character varying(255) DEFAULT NULL::character varying,
department character varying(50) DEFAULT NULL::character varying,
custom_t1 character varying(50) DEFAULT '0'::character varying,
custom_t2 character varying(50) DEFAULT NULL::character varying,
custom_t3 character varying(50) DEFAULT NULL::character varying,
cookie_key character varying(255) DEFAULT NULL::character varying,
cookie_date timestamp without time zone,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
change_password character(1) NOT NULL DEFAULT 'Y'::bpchar,
delay_number integer DEFAULT NULL,
status character varying(10) NOT NULL DEFAULT 'OK'::character varying,
loginmode character varying(50) DEFAULT NULL::character varying,
docserver_location_id character varying(32) DEFAULT NULL::character varying,
CONSTRAINT users_pkey PRIMARY KEY (user_id)
)
WITH (OIDS=FALSE);
-- modules/advanced_physical_archive/sql/structure/advanced_physical_archive.postgresql.sql
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
CREATE SEQUENCE arbox_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10
CACHE 1;
CREATE TABLE ar_boxes (
arbox_id bigint NOT NULL DEFAULT nextval('arbox_id_seq'::regclass),
title character varying(255) default NULL::character varying,
subject character varying(255) default NULL::character varying,
description text ,
entity_id character varying(32) default NULL::character varying,
arcontainer_id integer NOT NULL,
status character varying(3) default NULL::character varying,
creation_date timestamp without time zone,
retention_time timestamp without time zone,
custom_t1 character varying(3) default NULL::character varying,
custom_n1 integer default NULL,
custom_f1 numeric default NULL,
custom_d1 timestamp without time zone,
custom_t2 character varying(3) default NULL::character varying,
custom_n2 integer default NULL,
custom_f2 numeric default NULL,
custom_d2 timestamp without time zone,
custom_t3 character varying(50) default NULL::character varying,
custom_n3 integer default NULL,
custom_f3 numeric default NULL,
custom_d3 timestamp without time zone,
custom_t4 character varying(50) default NULL::character varying,
custom_n4 integer default NULL,
custom_f4 numeric default NULL,
custom_d4 timestamp without time zone,
custom_t5 character varying(255) default NULL::character varying,
custom_n5 integer default NULL,
custom_f5 numeric default NULL,
custom_d5 timestamp without time zone,
custom_t6 character varying(255) default NULL::character varying,
custom_t7 character varying(255) default NULL::character varying,
custom_t8 character varying(255) default NULL::character varying,
custom_t9 character varying(255) default NULL::character varying,
custom_t10 character varying(255) default NULL::character varying,
custom_t11 character varying(255) default NULL::character varying,
CONSTRAINT ar_boxes_pkey PRIMARY KEY (arbox_id)
)
WITH (OIDS=FALSE);
CREATE TABLE ar_containers (
arcontainer_id integer NOT NULL,
arcontainer_desc character varying(255) default NULL,
status character varying(3) default NULL,
ctype_id character varying(32) default NULL,
position_id bigint default NULL,
creation_date timestamp without time zone,
entity_id character varying(32) NOT NULL,
retention_time timestamp without time zone,
custom_t1 character varying(50) default NULL,
custom_n1 integer default NULL,
custom_f1 numeric default NULL,
custom_d1 timestamp without time zone,
custom_t2 character varying(3) default NULL,
custom_n2 integer default NULL,
custom_f2 numeric default NULL,
custom_d2 timestamp without time zone,
CONSTRAINT ar_containers_pkey PRIMARY KEY (arcontainer_id)
)
WITH (OIDS=FALSE);
CREATE TABLE ar_container_types (
ctype_id character varying(32) NOT NULL,
ctype_desc character varying(255) NOT NULL,
size_x float NOT NULL default '0',
size_y float NOT NULL default '0',
size_z float NOT NULL default '0',
CONSTRAINT ar_container_types_pkey PRIMARY KEY (ctype_id)
)
WITH (OIDS=FALSE);
CREATE TABLE ar_deposits (
deposit_id bigint NOT NULL,
deposit_label character varying(255) NOT NULL,
deposit_desc text NOT NULL,
flg_closed smallint NOT NULL,
closing_date timestamp without time zone NOT NULL,
creation_date timestamp without time zone NOT NULL,
user_id character varying(128) NOT NULL,
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
CONSTRAINT ar_deposits_pkey PRIMARY KEY (deposit_id)
)
WITH (OIDS=FALSE);
CREATE TABLE ar_header (
header_id bigserial NOT NULL,
creation_date timestamp without time zone NOT NULL,
ctype_id character varying(32) NOT NULL default '0',
year_1 integer NOT NULL default '0',
year_2 integer NOT NULL default '0',
site_id character varying(32) NOT NULL default '0',
destruction_date timestamp without time zone,
allow_transmission_date timestamp without time zone,
weight integer default NULL,
reservation_id bigint default NULL,
deposit_id bigint default NULL,
header_desc text ,
entity_id character varying(32) default NULL,
arnature_id character varying(32) default NULL,
arbox_id integer default NULL,
arcontainer_id integer default NULL,
CONSTRAINT ar_header_pkey PRIMARY KEY (header_id)
)
WITH (OIDS=FALSE);
CREATE TABLE ar_natures (
arnature_id character varying(32) NOT NULL,
arnature_desc character varying(255) default NULL,
arnature_retention integer NOT NULL,
entity_id character varying(32) default NULL,
enabled character varying(1) default NULL,
CONSTRAINT ar_natures_pkey PRIMARY KEY (arnature_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE position_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 200
CACHE 1;
CREATE TABLE ar_positions (
position_id bigint NOT NULL DEFAULT nextval('position_id_seq'::regclass),
site_id character varying(32) NOT NULL,
pos_row character varying(32) NOT NULL,
pos_col integer NOT NULL,
pos_level integer NOT NULL,
pos_max_uc integer NOT NULL,
pos_available_uc integer NOT NULL,
CONSTRAINT ar_positions_pkey PRIMARY KEY (position_id)
)
WITH (OIDS=FALSE);
CREATE TABLE ar_sites (
site_id character varying(32) NOT NULL default '0',
site_desc character varying(255) NOT NULL,
entity_id character varying(32) default NULL,
CONSTRAINT ar_sites_pkey PRIMARY KEY (site_id)
)
WITH (OIDS=FALSE);
CREATE TABLE res_apa (
res_id serial NOT NULL ,
title character varying( 255 ) default NULL ,
subject text ,
description text ,
publisher character varying( 255 ) default NULL ,
contributor character varying( 255 ) default NULL ,
type_id integer default NULL ,
format character varying( 50 ) default NULL ,
typist character varying( 128 ) default NULL ,
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
creation_date timestamp without time zone NOT NULL ,
author character varying( 255 ) default NULL ,
author_name text ,
identifier character varying( 255 ) default NULL ,
source character varying( 255 ) default NULL ,
doc_language character varying( 50 ) default NULL ,
relation integer default NULL ,
coverage character varying( 255 ) default NULL ,
doc_date timestamp without time zone default NULL ,
docserver_id character varying( 32 ) default NULL ,
folders_system_id integer default NULL ,
arbox_id character varying( 32 ) default NULL ,
path character varying( 255 ) default NULL ,
filename character varying( 255 ) default NULL ,
offset_doc character varying( 255 ) default NULL ,
logical_adr character varying( 255 ) default NULL ,
fingerprint character varying( 255 ) default NULL ,
filesize integer default NULL ,
is_paper char( 1 ) default NULL ,
page_count integer default NULL ,
scan_date timestamp without time zone default NULL ,
scan_user character varying( 50 ) default NULL ,
scan_location character varying( 255 ) default NULL ,
scan_wkstation character varying( 255 ) default NULL ,
scan_batch character varying( 50 ) default NULL ,
burn_batch character varying( 50 ) default NULL ,
scan_postmark character varying( 50 ) default NULL ,
envelop_id integer default NULL ,
status character varying( 3 ) default NULL ,
destination character varying( 50 ) default NULL ,
approver character varying( 50 ) default NULL ,
validation_date timestamp without time zone default NULL ,
work_batch integer default NULL ,
origin character varying( 50 ) default NULL ,
is_ingoing char( 1 ) default NULL ,
priority smallint default NULL ,
arbatch_id character varying( 32 ) default NULL ,
fulltext_result character varying(10) DEFAULT NULL,
ocr_result character varying(10) DEFAULT NULL,
converter_result character varying(10) DEFAULT NULL,
custom_t1 text default NULL,
custom_n1 integer default NULL ,
custom_f1 numeric default NULL ,
custom_d1 timestamp without time zone default NULL ,
custom_t2 character varying( 255 ) default NULL ,
custom_n2 integer default NULL ,
custom_f2 numeric default NULL ,
custom_d2 timestamp without time zone default NULL ,
custom_t3 character varying( 255 ) default NULL ,
custom_n3 integer default NULL ,
custom_f3 numeric default NULL ,
custom_d3 timestamp without time zone default NULL ,
custom_t4 character varying( 255 ) default NULL ,
custom_n4 integer default NULL ,
custom_f4 numeric default NULL ,
custom_d4 timestamp without time zone default NULL ,
custom_t5 character varying( 255 ) default NULL ,
custom_n5 integer default NULL ,
custom_f5 numeric default NULL ,
custom_d5 timestamp without time zone default NULL ,
custom_t6 character varying( 255 ) default NULL ,
custom_d6 timestamp without time zone default NULL ,
custom_t7 character varying( 255 ) default NULL ,
custom_d7 timestamp without time zone default NULL ,
custom_t8 character varying( 255 ) default NULL ,
custom_d8 timestamp without time zone default NULL ,
custom_t9 character varying( 255 ) default NULL ,
custom_d9 timestamp without time zone default NULL ,
custom_t10 character varying( 255 ) default NULL ,
custom_d10 timestamp without time zone default NULL ,
custom_t11 character varying( 255 ) default NULL ,
custom_t12 character varying( 255 ) default NULL ,
custom_t13 character varying( 255 ) default NULL ,
custom_t14 character varying( 255 ) default NULL ,
custom_t15 character varying( 255 ) default NULL ,
tablename character varying( 32 ) default 'res_apa',
initiator character varying( 50 ) default NULL ,
dest_user character varying( 128 ) default NULL ,
video_batch integer default NULL ,
video_time timestamp NULL default NULL ,
video_user character varying( 128 ) default NULL ,
video_date timestamp without time zone,
CONSTRAINT res_apa_pkey PRIMARY KEY (res_id)
)
WITH (OIDS=FALSE);
-- modules/attachments/sql/structure/attachments.postgresql.sql
CREATE SEQUENCE res_attachment_res_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE res_attachments
(
res_id bigint NOT NULL DEFAULT nextval('res_attachment_res_id_seq'::regclass),
title character varying(255) DEFAULT NULL::character varying,
subject text,
description text,
publisher character varying(255) DEFAULT NULL::character varying,
contributor character varying(255) DEFAULT NULL::character varying,
type_id bigint ,
format character varying(50) NOT NULL,
typist character varying(128) NOT NULL,
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
creation_date timestamp without time zone NOT NULL,
fulltext_result character varying(10) DEFAULT NULL::character varying,
ocr_result character varying(10) DEFAULT NULL::character varying,
author character varying(255) DEFAULT NULL::character varying,
author_name text,
identifier character varying(255) DEFAULT NULL::character varying,
source character varying(255) DEFAULT NULL::character varying,
doc_language character varying(50) DEFAULT NULL::character varying,
relation bigint,
coverage character varying(255) DEFAULT NULL::character varying,
doc_date timestamp without time zone,
docserver_id character varying(32) NOT NULL,
folders_system_id bigint,
arbox_id character varying(32) DEFAULT NULL::character varying,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
logical_adr character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
filesize bigint,
is_paper character(1) DEFAULT NULL::bpchar,
page_count integer,
scan_date timestamp without time zone,
scan_user character varying(50) DEFAULT NULL::character varying,
scan_location character varying(255) DEFAULT NULL::character varying,
scan_wkstation character varying(255) DEFAULT NULL::character varying,
scan_batch character varying(50) DEFAULT NULL::character varying,
burn_batch character varying(50) DEFAULT NULL::character varying,
scan_postmark character varying(50) DEFAULT NULL::character varying,
envelop_id bigint,
status character varying(10) DEFAULT NULL::character varying,
destination character varying(50) DEFAULT NULL::character varying,
approver character varying(50) DEFAULT NULL::character varying,
validation_date timestamp without time zone,
work_batch bigint,
origin character varying(50) DEFAULT NULL::character varying,
is_ingoing character(1) DEFAULT NULL::bpchar,
priority smallint,
initiator character varying(50) DEFAULT NULL::character varying,
dest_user character varying(128) DEFAULT NULL::character varying,
coll_id character varying(32) NOT NULL,
res_id_master bigint,
CONSTRAINT res_attachments_pkey PRIMARY KEY (res_id)
)
WITH (OIDS=FALSE);
-- modules/autofoldering/sql/structure/autofoldering.postgresql.sql
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
CREATE TABLE af_security
(
af_security_id bigint NOT NULL,
af_security_label character varying(255) NOT NULL,
group_id character varying(50) NOT NULL,
tree_id character varying(50) NOT NULL,
where_clause text NOT NULL,
start_date timestamp without time zone,
stop_date timestamp without time zone,
CONSTRAINT af_security_pkey PRIMARY KEY (af_security_id)
)
WITH (OIDS=FALSE);
-- Filled during autofoldering load
-- If you create your on table for a new tree
-- It is very important to respect the order of fields : DO NOT PUT IDS IN THE END OF THE TABLE!!!
CREATE TABLE af_view_year_target
(
level1 character varying(255) NOT NULL , -- Pays / Country : custom_t3
level1_id integer NOT NULL,
level2 character(4) , -- Année / Year : date_part( 'year', doc_date)
level2_id integer NOT NULL,
level3 character varying(255) , -- Client / Customer : custom_t4
level3_id integer NOT NULL,
CONSTRAINT af_view_year_target_pkey PRIMARY KEY (level1, level2, level3)
)
WITH (OIDS=FALSE);
CREATE TABLE af_view_customer_target
(
level1 character varying(255) NOT NULL , -- 1ère lettre client / Customer 1st letter : substring(custom_t4, 1, 1)
level1_id integer NOT NULL,
level2 character varying(255) , -- Client / Customer : custom_t4
level2_id integer NOT NULL,
level3 character(4) , -- Année / Year : date_part( 'year', doc_date)
level3_id integer NOT NULL,
CONSTRAINT af_view_customer_target_pkey PRIMARY KEY (level1, level2, level3)
)
WITH (OIDS=FALSE);
-- modules/basket/sql/structure/basket.postgresql.sql
CREATE TABLE actions_groupbaskets
(
id_action bigint NOT NULL,
where_clause text,
group_id character varying(32) NOT NULL,
basket_id character varying(32) NOT NULL,
used_in_basketlist character(1) NOT NULL DEFAULT 'Y'::bpchar,
used_in_action_page character(1) NOT NULL DEFAULT 'Y'::bpchar,
default_action_list character(1) NOT NULL DEFAULT 'N'::bpchar,
CONSTRAINT actions_groupbaskets_pkey PRIMARY KEY (id_action, group_id, basket_id)
)
WITH (OIDS=FALSE);
CREATE TABLE baskets
(
coll_id character varying(32) NOT NULL,
basket_id character varying(32) NOT NULL,
basket_name character varying(255) NOT NULL,
basket_desc character varying(255) NOT NULL,
basket_clause text NOT NULL,
is_generic character varying(6) NOT NULL DEFAULT 'N'::character varying,
is_visible character(1) NOT NULL DEFAULT 'Y'::bpchar,
Yves Christian KPAKPO
committed
is_folder_basket character (1) NOT NULL default 'N'::bpchar,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
CONSTRAINT baskets_pkey PRIMARY KEY (coll_id, basket_id)
)
WITH (OIDS=FALSE);
CREATE TABLE basket_persistent_mode
(
res_id bigint,
user_id character varying(32),
is_persistent character varying(1)
)
WITH (
OIDS=FALSE
);
CREATE TABLE groupbasket
(
group_id character varying(32) NOT NULL,
basket_id character varying(32) NOT NULL,
"sequence" integer NOT NULL DEFAULT 0,
redirect_basketlist character varying(2048) DEFAULT NULL::character varying,
redirect_grouplist character varying(2048) DEFAULT NULL::character varying,
result_page character varying(255) DEFAULT 'show_list1.php'::character varying,
can_redirect character(1) NOT NULL DEFAULT 'N'::bpchar,
can_delete character(1) NOT NULL DEFAULT 'N'::bpchar,
can_insert character(1) NOT NULL DEFAULT 'N'::bpchar,
Yves Christian KPAKPO
committed
list_lock_clause text,
sublist_lock_clause text,
CONSTRAINT groupbasket_pkey PRIMARY KEY (group_id, basket_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE user_abs_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE user_abs
(
system_id bigint NOT NULL DEFAULT nextval('user_abs_seq'::regclass),
user_abs character varying(128) NOT NULL,
new_user character varying(128) NOT NULL,
basket_id character varying(255) NOT NULL,
basket_owner character varying(255),
is_virtual character(1) NOT NULL DEFAULT 'N'::bpchar,
CONSTRAINT user_abs_pkey PRIMARY KEY (system_id)
)
WITH (OIDS=FALSE);
-- modules/cases/sql/structure/cases.postgresql.sql
CREATE SEQUENCE case_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE cases
(
case_id integer NOT NULL DEFAULT nextval('case_id_seq'::regclass),
case_label character varying(255) NOT NULL DEFAULT ''::bpchar,
case_description character varying(255),
case_type character varying(32),
case_closing_date timestamp without time zone,
case_last_update_date timestamp without time zone NOT NULL,
case_creation_date timestamp without time zone NOT NULL,
case_typist character varying(128) NOT NULL DEFAULT ''::bpchar,
case_parent integer,
case_custom_t1 character varying(255),
case_custom_t2 character varying(255),
case_custom_t3 character varying(255),
case_custom_t4 character varying(255),
CONSTRAINT cases_pkey PRIMARY KEY (case_id)
);
CREATE TABLE cases_res
(
case_id integer NOT NULL,
res_id integer NOT NULL,
CONSTRAINT cases_res_pkey PRIMARY KEY (case_id,res_id)
);
-- modules/entities/sql/structure/entities.postgresql.sql
CREATE TABLE entities
(
entity_id character varying(32) NOT NULL,
entity_label character varying(255),
short_label character varying(50),
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
adrs_1 character varying(255),
adrs_2 character varying(255),
adrs_3 character varying(255),
zipcode character varying(32),
city character varying(255),
country character varying(255),
email character varying(255),
business_id character varying(32),
parent_entity_id character varying(32),
entity_type character varying(64),
CONSTRAINT entities_pkey PRIMARY KEY (entity_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE listinstance_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE listinstance
(
listinstance_id BIGINT NOT NULL DEFAULT nextval('listinstance_id_seq'::regclass),
coll_id character varying(50) NOT NULL,
res_id bigint NOT NULL,
listinstance_type character varying(50) DEFAULT 'DOC'::character varying,
"sequence" bigint NOT NULL,
item_id character varying(128) NOT NULL,
item_type character varying(255) NOT NULL,
item_mode character varying(50) NOT NULL,
added_by_user character varying(128) NOT NULL,
added_by_entity character varying(50) NOT NULL,
visible character varying(50) NOT NULL DEFAULT 'Y'::bpchar,
viewed bigint,
CONSTRAINT listinstance_pkey PRIMARY KEY (listinstance_id)
)
WITH (OIDS=FALSE);
CREATE TABLE listmodels
(
coll_id character varying(50) NOT NULL,
object_id character varying(50) NOT NULL,
object_type character varying(255) NOT NULL,
"sequence" bigint NOT NULL,
item_id character varying(128) NOT NULL,
item_type character varying(255) NOT NULL,
item_mode character varying(50) NOT NULL,
listmodel_type character varying(50) DEFAULT 'DOC'::character varying,
description character varying(255),
visible character varying(1) NOT NULL DEFAULT 'Y'::bpchar
)
WITH (OIDS=FALSE);
listmodel_type_id character varying(50) NOT NULL,
listmodel_type_label character varying(100) NOT NULL,
CONSTRAINT "listmodel_types_pkey" PRIMARY KEY (listmodel_type_id)
CREATE TABLE users_entities
(
user_id character varying(128) NOT NULL,
entity_id character varying(32) NOT NULL,
user_role character varying(255),
primary_entity character(1) NOT NULL DEFAULT 'N'::bpchar,
CONSTRAINT users_entities_pkey PRIMARY KEY (user_id, entity_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE groupbasket_redirect_system_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE groupbasket_redirect
(
system_id integer NOT NULL DEFAULT nextval('groupbasket_redirect_system_id_seq'::regclass),
group_id character varying(32) NOT NULL,
basket_id character varying(32) NOT NULL,
action_id int NOT NULL,
entity_id character varying(32),
keyword character varying(255),
redirect_mode character varying(32) NOT NULL,
CONSTRAINT groupbasket_redirect_pkey PRIMARY KEY (system_id)
)
WITH (OIDS=FALSE);
-- modules/folder/sql/structure/folder.postgresql.sql
CREATE SEQUENCE folders_system_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE folders
(
folders_system_id bigint NOT NULL DEFAULT nextval('folders_system_id_seq'::regclass),
folder_id character varying(255) NOT NULL,
foldertype_id integer,
parent_id bigint DEFAULT (0)::bigint,
folder_name character varying(255) DEFAULT NULL::character varying,
subject character varying(255) DEFAULT NULL::character varying,
description character varying(255) DEFAULT NULL::character varying,
author character varying(255) DEFAULT NULL::character varying,
typist character varying(255) DEFAULT NULL::character varying,
Yves Christian KPAKPO
committed
status character varying(50) NOT NULL DEFAULT 'FOLDNEW'::character varying,
folder_level smallint DEFAULT (1)::smallint,
creation_date timestamp without time zone NOT NULL,
Yves Christian KPAKPO
committed
destination character varying(50) DEFAULT NULL,
dest_user character varying(128) DEFAULT NULL,
folder_out_id bigint,
video_status character varying(10) DEFAULT NULL,
video_user character varying(128) DEFAULT NULL,
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
is_frozen character(1) NOT NULL DEFAULT 'N',
custom_t1 character varying(255) DEFAULT NULL::character varying,
custom_n1 bigint,
custom_f1 numeric,
custom_d1 timestamp without time zone,
custom_t2 character varying(255) DEFAULT NULL::character varying,
custom_n2 bigint,
custom_f2 numeric,
custom_d2 timestamp without time zone,
custom_t3 character varying(255) DEFAULT NULL::character varying,
custom_n3 bigint,
custom_f3 numeric,
custom_d3 timestamp without time zone,
custom_t4 character varying(255) DEFAULT NULL::character varying,
custom_n4 bigint,
custom_f4 numeric,
custom_d4 timestamp without time zone,
custom_t5 character varying(255) DEFAULT NULL::character varying,
custom_n5 bigint,
custom_f5 numeric,
custom_d5 timestamp without time zone,
custom_t6 character varying(255) DEFAULT NULL::character varying,
custom_d6 timestamp without time zone,
custom_t7 character varying(255) DEFAULT NULL::character varying,
custom_d7 timestamp without time zone,
custom_t8 character varying(255) DEFAULT NULL::character varying,
custom_d8 timestamp without time zone,
custom_t9 character varying(255) DEFAULT NULL::character varying,
custom_d9 timestamp without time zone,
custom_t10 character varying(255) DEFAULT NULL::character varying,
custom_d10 timestamp without time zone,
custom_t11 character varying(255) DEFAULT NULL::character varying,
custom_d11 timestamp without time zone,
custom_t12 character varying(255) DEFAULT NULL::character varying,
custom_d12 timestamp without time zone,
custom_t13 character varying(255) DEFAULT NULL::character varying,
custom_d13 timestamp without time zone,
custom_t14 character varying(255) DEFAULT NULL::character varying,
custom_d14 timestamp without time zone,
custom_t15 character varying(255) DEFAULT NULL::character varying,
is_complete character(1) DEFAULT 'N'::bpchar,
is_folder_out character(1) DEFAULT 'N'::bpchar,
last_modified_date timestamp without time zone,
CONSTRAINT folders_pkey PRIMARY KEY (folders_system_id)
)
WITH (OIDS=FALSE);
CREATE TABLE folders_out (
folder_out_id serial NOT NULL,
folder_system_id integer NOT NULL,
last_name character varying(255) NOT NULL,
first_name character varying(255) NOT NULL,
last_name_folder_out character varying(255) NOT NULL,
first_name_folder_out character varying(255) NOT NULL,
put_out_pattern character varying(255) NOT NULL,
put_out_date timestamp without time zone NOT NULL,
return_date timestamp without time zone NOT NULL,
return_flag character(1) NOT NULL default 'N'::bpchar,
CONSTRAINT folders_out_pkey PRIMARY KEY (folder_out_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE foldertype_id_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
CACHE 1;
CREATE TABLE foldertypes
(
foldertype_id bigint NOT NULL DEFAULT nextval('foldertype_id_id_seq'::regclass),
foldertype_label character varying(255) NOT NULL,
maarch_comment text,
retention_time character varying(50),
custom_d1 character varying(10) DEFAULT '0000000000'::character varying,
custom_f1 character varying(10) DEFAULT '0000000000'::character varying,
custom_n1 character varying(10) DEFAULT '0000000000'::character varying,
custom_t1 character varying(10) DEFAULT '0000000000'::character varying,
custom_d2 character varying(10) DEFAULT '0000000000'::character varying,
custom_f2 character varying(10) DEFAULT '0000000000'::character varying,
custom_n2 character varying(10) DEFAULT '0000000000'::character varying,
custom_t2 character varying(10) DEFAULT '0000000000'::character varying,
custom_d3 character varying(10) DEFAULT '0000000000'::character varying,
custom_f3 character varying(10) DEFAULT '0000000000'::character varying,
custom_n3 character varying(10) DEFAULT '0000000000'::character varying,
custom_t3 character varying(10) DEFAULT '0000000000'::character varying,
custom_d4 character varying(10) DEFAULT '0000000000'::character varying,
custom_f4 character varying(10) DEFAULT '0000000000'::character varying,
custom_n4 character varying(10) DEFAULT '0000000000'::character varying,
custom_t4 character varying(10) DEFAULT '0000000000'::character varying,
custom_d5 character varying(10) DEFAULT '0000000000'::character varying,
custom_f5 character varying(10) DEFAULT '0000000000'::character varying,
custom_n5 character varying(10) DEFAULT '0000000000'::character varying,
custom_t5 character varying(10) DEFAULT '0000000000'::character varying,
custom_d6 character varying(10) DEFAULT '0000000000'::character varying,
custom_t6 character varying(10) DEFAULT '0000000000'::character varying,
custom_d7 character varying(10) DEFAULT '0000000000'::character varying,
custom_t7 character varying(10) DEFAULT '0000000000'::character varying,
custom_d8 character varying(10) DEFAULT '0000000000'::character varying,
custom_t8 character varying(10) DEFAULT '0000000000'::character varying,
custom_d9 character varying(10) DEFAULT '0000000000'::character varying,
custom_t9 character varying(10) DEFAULT '0000000000'::character varying,
custom_d10 character varying(10) DEFAULT '0000000000'::character varying,
custom_t10 character varying(10) DEFAULT '0000000000'::character varying,
custom_t11 character varying(10) DEFAULT '0000000000'::character varying,
custom_t12 character varying(10) DEFAULT '0000000000'::character varying,
custom_t13 character varying(10) DEFAULT '0000000000'::character varying,
custom_t14 character varying(10) DEFAULT '0000000000'::character varying,
custom_t15 character varying(10) DEFAULT '0000000000'::character varying,
coll_id character varying(32),
CONSTRAINT foldertypes_pkey PRIMARY KEY (foldertype_id)
)
WITH (OIDS=FALSE);
CREATE TABLE foldertypes_doctypes
(
foldertype_id integer NOT NULL,
doctype_id integer NOT NULL,
CONSTRAINT foldertypes_doctypes_pkey PRIMARY KEY (foldertype_id, doctype_id)
)
WITH (OIDS=FALSE);
CREATE TABLE foldertypes_doctypes_level1
(
foldertype_id integer NOT NULL,
doctypes_first_level_id integer NOT NULL,
CONSTRAINT foldertypes_doctypes_level1_pkey PRIMARY KEY (foldertype_id, doctypes_first_level_id)
)
WITH (OIDS=FALSE);
CREATE TABLE foldertypes_indexes
(
foldertype_id bigint NOT NULL,
field_name character varying(255) NOT NULL,
mandatory character(1) NOT NULL DEFAULT 'N'::bpchar,
CONSTRAINT foldertypes_indexes_pkey PRIMARY KEY (foldertype_id, field_name)
)
WITH (OIDS=FALSE);
-- modules/full_text/sql/structure/full_text.postgresql.sql
CREATE TABLE fulltext
(
coll_id character varying(32) NOT NULL,
res_id bigint NOT NULL,
text_type character varying(10) NOT NULL DEFAULT 'CON'::character varying,
fulltext_content text,
CONSTRAINT coll_id_res_id PRIMARY KEY (coll_id, res_id)
)
WITH (
OIDS=FALSE
);
-- modules/life_cycle/sql/structure/life_cycle.postgresql.sql
CREATE TABLE lc_policies
(
policy_name character varying(255) NOT NULL,
policy_desc character varying(255) NOT NULL,
CONSTRAINT lc_policies_pkey PRIMARY KEY (policy_id)
WITH (OIDS = FALSE);
CREATE TABLE lc_cycles
(
policy_id character varying(32) NOT NULL,
cycle_desc character varying(255) NOT NULL,
sequence_number integer NOT NULL,
CONSTRAINT lc_cycle_pkey PRIMARY KEY (policy_id, cycle_id)
WITH (OIDS = FALSE);
CREATE TABLE lc_cycle_steps
(
policy_id character varying(32) NOT NULL,
cycle_id character varying(32) NOT NULL,
cycle_step_id character varying(32) NOT NULL,
cycle_step_desc character varying(255) NOT NULL,
docserver_type_id character varying(32) NOT NULL,
is_allow_failure character(1) NOT NULL DEFAULT 'N'::bpchar,
step_operation character varying(32) NOT NULL,
sequence_number integer NOT NULL,
is_must_complete character(1) NOT NULL DEFAULT 'N'::bpchar,
postprocess_script character varying(255) DEFAULT NULL,
CONSTRAINT lc_cycle_steps_pkey PRIMARY KEY (policy_id, cycle_id, cycle_step_id, docserver_type_id)
WITH (OIDS = FALSE);
CREATE TABLE lc_stack
(
policy_id character varying(32) NOT NULL,
cycle_id character varying(32) NOT NULL,
cycle_step_id character varying(32) NOT NULL,
res_id bigint NOT NULL,
cnt_retry integer DEFAULT NULL,
status character(1) NOT NULL,
CONSTRAINT lc_stack_pkey PRIMARY KEY (policy_id, cycle_id, cycle_step_id, res_id)
WITH (OIDS = FALSE);
-- modules/notes/sql/structure/notes.postgresql.sql
CREATE SEQUENCE notes_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 20
CACHE 1;
CREATE TABLE notes
(
id bigint NOT NULL DEFAULT nextval('notes_seq'::regclass),
identifier bigint NOT NULL,
tablename character varying(50),
user_id character varying(128) NOT NULL,
date_note date NOT NULL,
note_text text NOT NULL,
coll_id character varying(50),
CONSTRAINT notes_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE notes_entities_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 20
CACHE 1;
CREATE TABLE note_entities
(
id bigint NOT NULL DEFAULT nextval('notes_entities_id_seq'::regclass),
note_id bigint NOT NULL,
item_id character varying(50),
CONSTRAINT note_entities_pkey PRIMARY KEY (id)
)
WITH (OIDS=FALSE);
-- modules/notes/sql/structure/notifications.postgresql.sql

Cyril Vazquez
committed
CREATE SEQUENCE notifications_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807

Cyril Vazquez
committed
CACHE 1;
CREATE TABLE notifications
(
notification_sid bigint NOT NULL DEFAULT nextval('notifications_seq'::regclass),
notification_id character varying(50) NOT NULL,
description character varying(255),
is_enabled character varying(1) NOT NULL default 'Y'::bpchar,

Cyril Vazquez
committed
event_id character varying(255) NOT NULL,
notification_mode character varying(30) NOT NULL,
template_id bigint,

Cyril Vazquez
committed
diffusion_type character varying(50) NOT NULL,
diffusion_properties character varying(255),
attachfor_type character varying(50),
attachfor_properties character varying(255),
CONSTRAINT notifications_pkey PRIMARY KEY (notification_sid)
)
WITH (
OIDS=FALSE
);
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;

Cyril Vazquez
committed
-- DROP TABLE notif_event_stack

Cyril Vazquez
committed
event_stack_sid bigint NOT NULL DEFAULT nextval('notif_event_stack_seq'::regclass),
table_name character varying(50) NOT NULL,
record_id character varying(50) NOT NULL,
user_id character varying(128) NOT NULL,
event_date timestamp without time zone NOT NULL,
exec_date timestamp without time zone,
exec_result character varying(50),

Cyril Vazquez
committed
CONSTRAINT notif_event_stack_pkey PRIMARY KEY (event_stack_sid)
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;

Cyril Vazquez
committed
-- DROP TABLE notif_email_stack

Cyril Vazquez
committed
email_stack_sid bigint NOT NULL DEFAULT nextval('notif_email_stack_seq'::regclass),
sender character varying(255) NOT NULL,
reply_to character varying(255),
recipient character varying(2000) NOT NULL,
cc character varying(2000),
bcc character varying(2000),
subject character varying(255),
html_body text,
text_body text,
charset character varying(50) NOT NULL,
attachments character varying(2000),
module character varying(50) NOT NULL,
exec_date timestamp without time zone,
exec_result character varying(50),

Cyril Vazquez
committed
CONSTRAINT notif_email_stack_pkey PRIMARY KEY (email_stack_sid)
-- modules/physical_archive/sql/structure/physical_archive.postgresql.sql
create or replace function update_the_db() returns void as
$$
begin
if not exists(select * from information_schema.tables where table_name = 'ar_boxes') then
CREATE TABLE ar_boxes (
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
arbox_id serial NOT NULL,
title character varying(255) DEFAULT NULL,
subject character varying(255) DEFAULT NULL,
description text ,
entity_id character varying(32) DEFAULT NULL,
arcontainer_id integer NOT NULL,
status character varying(3) DEFAULT NULL,
creation_date timestamp without time zone DEFAULT NULL,
retention_time character varying(50) DEFAULT NULL,
custom_t1 character varying(3) DEFAULT NULL,
custom_n1 integer,
custom_f1 numeric,
custom_d1 timestamp without time zone DEFAULT NULL,
custom_t2 character varying(3) DEFAULT NULL,
custom_n2 integer,
custom_f2 numeric,
custom_d2 timestamp without time zone DEFAULT NULL,
custom_t3 character varying(50) DEFAULT NULL,
custom_n3 integer,
custom_f3 numeric,
custom_d3 timestamp without time zone DEFAULT NULL,
custom_t4 character varying(50) DEFAULT NULL,
custom_n4 integer,
custom_f4 numeric,
custom_d4 timestamp without time zone DEFAULT NULL,
custom_t5 character varying(255) DEFAULT NULL,
custom_n5 integer,
custom_f5 numeric,
custom_d5 timestamp without time zone DEFAULT NULL,
custom_t6 character varying(255) DEFAULT NULL,
custom_t7 character varying(255) DEFAULT NULL,
custom_t8 character varying(255) DEFAULT NULL,
custom_t9 character varying(255) DEFAULT NULL,
custom_t10 character varying(255) DEFAULT NULL,
custom_t11 character varying(255) DEFAULT NULL,
CONSTRAINT ar_boxes_pkey PRIMARY KEY (arbox_id)
) ;
end if;
end;
$$
language 'plpgsql';
select update_the_db();
drop function update_the_db();
create or replace function update_the_db() returns void as
$$
begin
if not exists(select * from information_schema.tables where table_name = 'ar_containers') then
CREATE TABLE ar_containers
(
arcontainer_id serial NOT NULL ,
arcontainer_desc character varying(255) DEFAULT NULL,
status character varying(3) DEFAULT NULL,
ctype_id character varying(32) DEFAULT NULL,
position_id bigint DEFAULT NULL,
creation_date timestamp without time zone DEFAULT NULL,
entity_id character varying(32) DEFAULT NULL,
retention_time character varying(50) DEFAULT NULL,
custom_t1 character varying(50) DEFAULT NULL,
custom_n1 integer,
custom_f1 numeric,
custom_d1 timestamp without time zone DEFAULT NULL,
custom_t2 character varying(3) DEFAULT NULL,
custom_n2 integer,
custom_f2 numeric,
custom_d2 timestamp without time zone DEFAULT NULL,
CONSTRAINT ar_containers_pkey PRIMARY KEY (arcontainer_id)
) ;
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
end if;
end;
$$
language 'plpgsql';
select update_the_db();
drop function update_the_db();
CREATE TABLE ar_batch
(
arbatch_id serial NOT NULL ,
title character varying(255) DEFAULT NULL,
subject character varying(255) DEFAULT NULL,
description text,
arbox_id bigint,
status character varying(3) DEFAULT NULL,
creation_date timestamp without time zone DEFAULT NULL,
retention_time character varying(50) DEFAULT NULL,
custom_t1 character varying(3) DEFAULT NULL,
custom_n1 integer,
custom_f1 numeric,
custom_d1 timestamp without time zone DEFAULT NULL,
custom_t2 character varying(3) DEFAULT NULL,
custom_n2 integer,
custom_f2 numeric,
custom_d2 timestamp without time zone DEFAULT NULL,
custom_t3 character varying(50) DEFAULT NULL,
custom_n3 integer,
custom_f3 numeric,
custom_d3 timestamp without time zone DEFAULT NULL,
custom_t4 character varying(50) DEFAULT NULL,
custom_n4 integer,
custom_f4 numeric,
custom_d4 timestamp without time zone DEFAULT NULL,
custom_t5 character varying(255) DEFAULT NULL,
custom_n5 integer,
custom_f5 numeric,
custom_d5 timestamp without time zone DEFAULT NULL,
custom_t6 character varying(255) DEFAULT NULL,
custom_t7 character varying(255) DEFAULT NULL,
custom_t8 character varying(255) DEFAULT NULL,
custom_t9 character varying(255) DEFAULT NULL,
custom_t10 character varying(255) DEFAULT NULL,
custom_t11 character varying(255) DEFAULT NULL,
CONSTRAINT ar_batch_pkey PRIMARY KEY (arbatch_id)
) ;
-- modules/postindexing/sql/structure/postindexing.postgresql.sql
-- modules/reports/sql/structure/reports.postgresql.sql
CREATE TABLE usergroups_reports
(
group_id character varying(32) NOT NULL,
report_id character varying(50) NOT NULL,
CONSTRAINT usergroups_reports_pkey PRIMARY KEY (group_id, report_id)
)
WITH (OIDS=FALSE);
-- modules/templates/sql/structure/templates.postgresql.sql
CREATE SEQUENCE templates_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE SEQUENCE templates_association_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE templates
(
template_id bigint NOT NULL DEFAULT nextval('templates_seq'::regclass),
template_label character varying(255) DEFAULT NULL::character varying,
template_comment character varying(255) DEFAULT NULL::character varying,
template_content text,
template_type character varying(32) NOT NULL DEFAULT 'HTML'::character varying,
template_file_name character varying(255),
template_style character varying(255),
template_datasource character varying(32),
CONSTRAINT templates_pkey PRIMARY KEY (template_id)
)
WITH (OIDS=FALSE);
CREATE TABLE templates_association
(
system_id bigint NOT NULL DEFAULT nextval('templates_association_seq'::regclass),
template_id bigint NOT NULL,
what character varying(255) NOT NULL,
value_field character varying(255) NOT NULL,
maarch_module character varying(255) NOT NULL DEFAULT 'apps'::character varying,
CONSTRAINT templates_association_pkey PRIMARY KEY (system_id)
)
CREATE TABLE templates_doctype_ext
(
template_id bigint DEFAULT NULL,
type_id integer NOT NULL,
is_generated character(1) NOT NULL DEFAULT 'N'::bpchar
)
WITH (OIDS=FALSE);
-- apps/maarch_entreprise/sql/structure/apps.postgresql.sql
CREATE SEQUENCE contact_id_seq
INCREMENT 1
MINVALUE 14
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE contacts (
contact_id bigint NOT NULL DEFAULT nextval('contact_id_seq'::regclass),
lastname character varying(255),
firstname character varying(255),
society character varying(255),
function character varying(255),
address_num character varying(32) ,
address_street character varying(255),
address_complement character varying(255),
address_town character varying(255),
address_postal_code character varying(255),
address_country character varying(255),
email character varying(255),
phone character varying(20),
other_data text ,
is_corporate_person character(1) NOT NULL DEFAULT 'Y'::bpchar,
user_id character varying(128),
title character varying(255),
business_id character varying(255),
ref_identifier character varying(255),
acc_number character varying(50),
entity_id character varying(32),
contact_type character varying(255) NOT NULL DEFAULT 'letter'::character varying,
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
is_private character varying(1) NOT NULL DEFAULT 'N'::character varying,
CONSTRAINT contacts_pkey PRIMARY KEY (contact_id)
) WITH (OIDS=FALSE);
CREATE SEQUENCE query_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 10
CACHE 1;
CREATE TABLE saved_queries (
query_id bigint NOT NULL DEFAULT nextval('query_id_seq'::regclass),
user_id character varying(128) default NULL,
query_name character varying(255) NOT NULL,
creation_date timestamp without time zone NOT NULL,
created_by character varying(128) NOT NULL,
query_type character varying(50) NOT NULL,
query_txt text NOT NULL,
last_modification_date timestamp without time zone,
CONSTRAINT saved_queries_pkey PRIMARY KEY (query_id)
) WITH (OIDS=FALSE);
CREATE SEQUENCE doctypes_first_level_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE doctypes_first_level
(
doctypes_first_level_id integer NOT NULL DEFAULT nextval('doctypes_first_level_id_seq'::regclass),
doctypes_first_level_label character varying(255) NOT NULL,
css_style character varying(255),
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
CONSTRAINT doctypes_first_level_pkey PRIMARY KEY (doctypes_first_level_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE doctypes_second_level_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
CACHE 1;
CREATE TABLE doctypes_second_level
(
doctypes_second_level_id integer NOT NULL DEFAULT nextval('doctypes_second_level_id_seq'::regclass),
doctypes_second_level_label character varying(255) NOT NULL,
doctypes_first_level_id integer NOT NULL,
css_style character varying(255),
enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
CONSTRAINT doctypes_second_level_pkey PRIMARY KEY (doctypes_second_level_id)
)
WITH (OIDS=FALSE);
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
-- Table: rp_history
CREATE SEQUENCE rp_history_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 1
CACHE 1;
CREATE TABLE rp_history
(
system_id bigint NOT NULL DEFAULT nextval('rp_history_id_seq'::regclass),
table_name character varying(32) NOT NULL,
rp_cycle bigint NOT NULL,
start_res_id bigint NOT NULL,
stop_res_id bigint NOT NULL,
start_date timestamp without time zone NOT NULL,
stop_date timestamp without time zone NOT NULL,
res_count bigint NOT NULL,
fail_count bigint NOT NULL,
CONSTRAINT rp_history_pkey PRIMARY KEY (system_id)
)
WITH (
OIDS=FALSE
);
CREATE TABLE tags
(
tag_label character varying(50) NOT NULL,
coll_id character varying(50) NOT NULL,
res_id bigint NOT NULL,
CONSTRAINT tagsjoin_pkey PRIMARY KEY (tag_label, coll_id, res_id )
)
WITH (OIDS=FALSE);
CREATE SEQUENCE res_id_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 100
CACHE 1;
CREATE TABLE res_x
(
res_id bigint NOT NULL DEFAULT nextval('res_id_seq'::regclass),
title character varying(255) DEFAULT NULL::character varying,
subject text,
description text,
publisher character varying(255) DEFAULT NULL::character varying,
contributor character varying(255) DEFAULT NULL::character varying,
type_id bigint NOT NULL,
format character varying(50) NOT NULL,
typist character varying(128) NOT NULL,
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
creation_date timestamp without time zone NOT NULL,
fulltext_result character varying(10) DEFAULT NULL,
ocr_result character varying(10) DEFAULT NULL,
converter_result character varying(10) DEFAULT NULL,
author character varying(255) DEFAULT NULL::character varying,
author_name text,
identifier character varying(255) DEFAULT NULL::character varying,
source character varying(255) DEFAULT NULL::character varying,
doc_language character varying(50) DEFAULT NULL::character varying,
relation bigint,
coverage character varying(255) DEFAULT NULL::character varying,
doc_date timestamp without time zone,
docserver_id character varying(32) NOT NULL,
folders_system_id bigint,
arbox_id character varying(32) DEFAULT NULL::character varying,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
logical_adr character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
filesize bigint,
is_paper character(1) DEFAULT NULL::bpchar,
page_count integer,
scan_date timestamp without time zone,
scan_user character varying(50) DEFAULT NULL::character varying,
scan_location character varying(255) DEFAULT NULL::character varying,
scan_wkstation character varying(255) DEFAULT NULL::character varying,
scan_batch character varying(50) DEFAULT NULL::character varying,
burn_batch character varying(50) DEFAULT NULL::character varying,
scan_postmark character varying(50) DEFAULT NULL::character varying,
envelop_id bigint,
status character varying(10) NOT NULL,
destination character varying(50) DEFAULT NULL::character varying,
approver character varying(50) DEFAULT NULL::character varying,
validation_date timestamp without time zone,
work_batch bigint,
origin character varying(50) DEFAULT NULL::character varying,
is_ingoing character(1) DEFAULT NULL::bpchar,
priority smallint,
arbatch_id bigint DEFAULT NULL,
policy_id character varying(32) DEFAULT NULL::character varying,
cycle_id character varying(32) DEFAULT NULL::character varying,
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
is_multi_docservers character(1) NOT NULL DEFAULT 'N'::bpchar,
is_frozen character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_t1 text,
custom_n1 bigint,
custom_f1 numeric,
custom_d1 timestamp without time zone,
custom_t2 character varying(255) DEFAULT NULL::character varying,
custom_n2 bigint,
custom_f2 numeric,
custom_d2 timestamp without time zone,
custom_t3 character varying(255) DEFAULT NULL::character varying,
custom_n3 bigint,
custom_f3 numeric,
custom_d3 timestamp without time zone,
custom_t4 character varying(255) DEFAULT NULL::character varying,
custom_n4 bigint,
custom_f4 numeric,
custom_d4 timestamp without time zone,
custom_t5 character varying(255) DEFAULT NULL::character varying,
custom_n5 bigint,
custom_f5 numeric,
custom_d5 timestamp without time zone,
custom_t6 character varying(255) DEFAULT NULL::character varying,
custom_d6 timestamp without time zone,
custom_t7 character varying(255) DEFAULT NULL::character varying,
custom_d7 timestamp without time zone,
custom_t8 character varying(255) DEFAULT NULL::character varying,
custom_d8 timestamp without time zone,
custom_t9 character varying(255) DEFAULT NULL::character varying,
custom_d9 timestamp without time zone,
custom_t10 character varying(255) DEFAULT NULL::character varying,
custom_d10 timestamp without time zone,
custom_t11 character varying(255) DEFAULT NULL::character varying,
custom_t12 character varying(255) DEFAULT NULL::character varying,
custom_t13 character varying(255) DEFAULT NULL::character varying,
custom_t14 character varying(255) DEFAULT NULL::character varying,
custom_t15 character varying(255) DEFAULT NULL::character varying,
tablename character varying(32) DEFAULT 'res_x'::character varying,
initiator character varying(50) DEFAULT NULL::character varying,
dest_user character varying(128) DEFAULT NULL::character varying,
video_batch integer DEFAULT NULL,
video_time integer DEFAULT NULL,
video_user character varying(128) DEFAULT NULL,
video_date timestamp without time zone,
esign_proof_id character varying(255),
esign_proof_content text,
esign_content text,
esign_date timestamp without time zone,
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
CONSTRAINT res_x_pkey PRIMARY KEY (res_id)
)
WITH (OIDS=FALSE);
CREATE TABLE adr_x
(
res_id bigint NOT NULL,
docserver_id character varying(32) NOT NULL,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
adr_priority integer NOT NULL,
CONSTRAINT adr_x_pkey PRIMARY KEY (res_id, docserver_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE res_id_mlb_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 100
CACHE 1;
CREATE TABLE res_letterbox
(
res_id bigint NOT NULL DEFAULT nextval('res_id_mlb_seq'::regclass),
title character varying(255) DEFAULT NULL::character varying,
subject text,
description text,
publisher character varying(255) DEFAULT NULL::character varying,
contributor character varying(255) DEFAULT NULL::character varying,
type_id bigint NOT NULL,
format character varying(50) NOT NULL,
typist character varying(128) NOT NULL,
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
creation_date timestamp without time zone NOT NULL,
fulltext_result character varying(10) DEFAULT NULL,
ocr_result character varying(10) DEFAULT NULL,
converter_result character varying(10) DEFAULT NULL,
author character varying(255) DEFAULT NULL::character varying,
author_name text,
identifier character varying(255) DEFAULT NULL::character varying,
source character varying(255) DEFAULT NULL::character varying,
doc_language character varying(50) DEFAULT NULL::character varying,
relation bigint,
coverage character varying(255) DEFAULT NULL::character varying,
doc_date timestamp without time zone,
docserver_id character varying(32) NOT NULL,
folders_system_id bigint,
arbox_id character varying(32) DEFAULT NULL::character varying,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
logical_adr character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
filesize bigint,
is_paper character(1) DEFAULT NULL::bpchar,
page_count integer,
scan_date timestamp without time zone,
scan_user character varying(50) DEFAULT NULL::character varying,
scan_location character varying(255) DEFAULT NULL::character varying,
scan_wkstation character varying(255) DEFAULT NULL::character varying,
scan_batch character varying(50) DEFAULT NULL::character varying,
burn_batch character varying(50) DEFAULT NULL::character varying,
scan_postmark character varying(50) DEFAULT NULL::character varying,
envelop_id bigint,
status character varying(10) NOT NULL,
destination character varying(50) DEFAULT NULL::character varying,
approver character varying(50) DEFAULT NULL::character varying,
validation_date timestamp without time zone,
work_batch bigint,
origin character varying(50) DEFAULT NULL::character varying,
is_ingoing character(1) DEFAULT NULL::bpchar,
priority smallint,
arbatch_id bigint DEFAULT NULL,
policy_id character varying(32) DEFAULT NULL::character varying,
cycle_id character varying(32) DEFAULT NULL::character varying,
cycle_date timestamp without time zone,
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
is_multi_docservers character(1) NOT NULL DEFAULT 'N'::bpchar,
is_frozen character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_t1 text,
custom_n1 bigint,
custom_f1 numeric,
custom_d1 timestamp without time zone,
custom_t2 character varying(255) DEFAULT NULL::character varying,
custom_n2 bigint,
custom_f2 numeric,
custom_d2 timestamp without time zone,
custom_t3 character varying(255) DEFAULT NULL::character varying,
custom_n3 bigint,
custom_f3 numeric,
custom_d3 timestamp without time zone,
custom_t4 character varying(255) DEFAULT NULL::character varying,
custom_n4 bigint,
custom_f4 numeric,
custom_d4 timestamp without time zone,
custom_t5 character varying(255) DEFAULT NULL::character varying,
custom_n5 bigint,
custom_f5 numeric,
custom_d5 timestamp without time zone,
custom_t6 character varying(255) DEFAULT NULL::character varying,
custom_d6 timestamp without time zone,
custom_t7 character varying(255) DEFAULT NULL::character varying,
custom_d7 timestamp without time zone,
custom_t8 character varying(255) DEFAULT NULL::character varying,
custom_d8 timestamp without time zone,
custom_t9 character varying(255) DEFAULT NULL::character varying,
custom_d9 timestamp without time zone,
custom_t10 character varying(255) DEFAULT NULL::character varying,
custom_d10 timestamp without time zone,
custom_t11 character varying(255) DEFAULT NULL::character varying,
custom_t12 character varying(255) DEFAULT NULL::character varying,
custom_t13 character varying(255) DEFAULT NULL::character varying,
custom_t14 character varying(255) DEFAULT NULL::character varying,
custom_t15 character varying(255) DEFAULT NULL::character varying,
tablename character varying(32) DEFAULT 'res_letterbox'::character varying,
initiator character varying(50) DEFAULT NULL::character varying,
dest_user character varying(128) DEFAULT NULL::character varying,
video_batch integer DEFAULT NULL,
video_time integer DEFAULT NULL,
video_user character varying(128) DEFAULT NULL,
video_date timestamp without time zone,
esign_proof_id character varying(255),
esign_proof_content text,
esign_content text,
esign_date timestamp without time zone,
CONSTRAINT res_letterbox_pkey PRIMARY KEY (res_id)
)
WITH (OIDS=FALSE);
CREATE SEQUENCE res_linked_mlb_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 171
CACHE 1;
CREATE TABLE res_linked
(
id bigint NOT NULL DEFAULT nextval('res_linked_mlb_seq'::regclass),
res_parent bigint NOT NULL,
res_child bigint NOT NULL,
coll_id character varying(50) NOT NULL,
CONSTRAINT res_linked_primary PRIMARY KEY (id)
)
WITH (
OIDS=FALSE
);
CREATE TABLE mlb_coll_ext (
res_id bigint NOT NULL,
category_id character varying(50) NOT NULL,
exp_contact_id integer default NULL,
exp_user_id character varying(128) default NULL,
dest_contact_id integer default NULL,
dest_user_id character varying(128) default NULL,
nature_id character varying(50),
alt_identifier character varying(255) default NULL,
admission_date timestamp without time zone,
answer_type_bitmask character varying(7) default NULL,
other_answer_desc character varying(255) DEFAULT NULL::character varying,
process_limit_date timestamp without time zone default NULL,
process_notes text,
closing_date timestamp without time zone default NULL,
alarm1_date timestamp without time zone default NULL,
alarm2_date timestamp without time zone default NULL,
flag_notif char(1) default 'N'::character varying ,
flag_alarm1 char(1) default 'N'::character varying ,
flag_alarm2 char(1) default 'N'::character varying
)WITH (OIDS=FALSE);
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
CREATE SEQUENCE res_id_version_letterbox_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 100
CACHE 1;
CREATE TABLE res_version_letterbox
(
res_id bigint NOT NULL DEFAULT nextval('res_id_version_letterbox_seq'::regclass),
title character varying(255) DEFAULT NULL::character varying,
subject text,
description text,
publisher character varying(255) DEFAULT NULL::character varying,
contributor character varying(255) DEFAULT NULL::character varying,
type_id bigint NOT NULL,
format character varying(50) NOT NULL,
typist character varying(128) NOT NULL,
creation_date timestamp without time zone NOT NULL,
fulltext_result character varying(10) DEFAULT NULL::character varying,
ocr_result character varying(10) DEFAULT NULL::character varying,
converter_result character varying(10) DEFAULT NULL::character varying,
author character varying(255) DEFAULT NULL::character varying,
author_name text,
identifier character varying(255) DEFAULT NULL::character varying,
source character varying(255) DEFAULT NULL::character varying,
doc_language character varying(50) DEFAULT NULL::character varying,
relation bigint,
coverage character varying(255) DEFAULT NULL::character varying,
doc_date timestamp without time zone,
docserver_id character varying(32) NOT NULL,
folders_system_id bigint,
arbox_id character varying(32) DEFAULT NULL::character varying,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
logical_adr character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
filesize bigint,
is_paper character(1) DEFAULT NULL::bpchar,
page_count integer,
scan_date timestamp without time zone,
scan_user character varying(50) DEFAULT NULL::character varying,
scan_location character varying(255) DEFAULT NULL::character varying,
scan_wkstation character varying(255) DEFAULT NULL::character varying,
scan_batch character varying(50) DEFAULT NULL::character varying,
burn_batch character varying(50) DEFAULT NULL::character varying,
scan_postmark character varying(50) DEFAULT NULL::character varying,
envelop_id bigint,
status character varying(10) NOT NULL,
destination character varying(50) DEFAULT NULL::character varying,
approver character varying(50) DEFAULT NULL::character varying,
validation_date timestamp without time zone,
work_batch bigint,
origin character varying(50) DEFAULT NULL::character varying,
is_ingoing character(1) DEFAULT NULL::bpchar,
priority smallint,
arbatch_id bigint,
policy_id character varying(32),
cycle_id character varying(32),
is_multi_docservers character(1) NOT NULL DEFAULT 'N'::bpchar,
is_frozen character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_t1 text,
custom_n1 bigint,
custom_f1 numeric,
custom_d1 timestamp without time zone,
custom_t2 character varying(255) DEFAULT NULL::character varying,
custom_n2 bigint,
custom_f2 numeric,
custom_d2 timestamp without time zone,
custom_t3 character varying(255) DEFAULT NULL::character varying,
custom_n3 bigint,
custom_f3 numeric,
custom_d3 timestamp without time zone,
custom_t4 character varying(255) DEFAULT NULL::character varying,
custom_n4 bigint,
custom_f4 numeric,
custom_d4 timestamp without time zone,
custom_t5 character varying(255) DEFAULT NULL::character varying,
custom_n5 bigint,
custom_f5 numeric,
custom_d5 timestamp without time zone,
custom_t6 character varying(255) DEFAULT NULL::character varying,
custom_d6 timestamp without time zone,
custom_t7 character varying(255) DEFAULT NULL::character varying,
custom_d7 timestamp without time zone,
custom_t8 character varying(255) DEFAULT NULL::character varying,
custom_d8 timestamp without time zone,
custom_t9 character varying(255) DEFAULT NULL::character varying,
custom_d9 timestamp without time zone,
custom_t10 character varying(255) DEFAULT NULL::character varying,
custom_d10 timestamp without time zone,
custom_t11 character varying(255) DEFAULT NULL::character varying,
custom_t12 character varying(255) DEFAULT NULL::character varying,
custom_t13 character varying(255) DEFAULT NULL::character varying,
custom_t14 character varying(255) DEFAULT NULL::character varying,
custom_t15 character varying(255) DEFAULT NULL::character varying,
tablename character varying(32) DEFAULT 'res_version_letterbox'::character varying,
initiator character varying(50) DEFAULT NULL::character varying,
dest_user character varying(128) DEFAULT NULL::character varying,
video_batch integer,
video_time integer,
video_user character varying(128) DEFAULT NULL::character varying,
video_date timestamp without time zone,
cycle_date timestamp without time zone,
coll_id character varying(32) NOT NULL,
res_id_master bigint,
CONSTRAINT res_version_letterbox_pkey PRIMARY KEY (res_id)
)
WITH (
OIDS=FALSE
);
CREATE SEQUENCE res_id_version_x_seq
INCREMENT 1
MINVALUE 1
MAXVALUE 9223372036854775807
START 100
CACHE 1;
CREATE TABLE res_version_x
(
res_id bigint NOT NULL DEFAULT nextval('res_id_version_x_seq'::regclass),
title character varying(255) DEFAULT NULL::character varying,
subject text,
description text,
publisher character varying(255) DEFAULT NULL::character varying,
contributor character varying(255) DEFAULT NULL::character varying,
type_id bigint NOT NULL,
format character varying(50) NOT NULL,
typist character varying(128) NOT NULL,
creation_date timestamp without time zone NOT NULL,
fulltext_result character varying(10) DEFAULT NULL::character varying,
ocr_result character varying(10) DEFAULT NULL::character varying,
converter_result character varying(10) DEFAULT NULL::character varying,
author character varying(255) DEFAULT NULL::character varying,
author_name text,
identifier character varying(255) DEFAULT NULL::character varying,
source character varying(255) DEFAULT NULL::character varying,
doc_language character varying(50) DEFAULT NULL::character varying,
relation bigint,
coverage character varying(255) DEFAULT NULL::character varying,
doc_date timestamp without time zone,
docserver_id character varying(32) NOT NULL,
folders_system_id bigint,
arbox_id character varying(32) DEFAULT NULL::character varying,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
logical_adr character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
filesize bigint,
is_paper character(1) DEFAULT NULL::bpchar,
page_count integer,
scan_date timestamp without time zone,
scan_user character varying(50) DEFAULT NULL::character varying,
scan_location character varying(255) DEFAULT NULL::character varying,
scan_wkstation character varying(255) DEFAULT NULL::character varying,
scan_batch character varying(50) DEFAULT NULL::character varying,
burn_batch character varying(50) DEFAULT NULL::character varying,
scan_postmark character varying(50) DEFAULT NULL::character varying,
envelop_id bigint,
status character varying(10) NOT NULL,
destination character varying(50) DEFAULT NULL::character varying,
approver character varying(50) DEFAULT NULL::character varying,
validation_date timestamp without time zone,
work_batch bigint,
origin character varying(50) DEFAULT NULL::character varying,
is_ingoing character(1) DEFAULT NULL::bpchar,
priority smallint,
arbatch_id bigint,
policy_id character varying(32),
cycle_id character varying(32),
is_multi_docservers character(1) NOT NULL DEFAULT 'N'::bpchar,
is_frozen character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_t1 text,
custom_n1 bigint,
custom_f1 numeric,
custom_d1 timestamp without time zone,
custom_t2 character varying(255) DEFAULT NULL::character varying,
custom_n2 bigint,
custom_f2 numeric,
custom_d2 timestamp without time zone,
custom_t3 character varying(255) DEFAULT NULL::character varying,
custom_n3 bigint,
custom_f3 numeric,
custom_d3 timestamp without time zone,
custom_t4 character varying(255) DEFAULT NULL::character varying,
custom_n4 bigint,
custom_f4 numeric,
custom_d4 timestamp without time zone,
custom_t5 character varying(255) DEFAULT NULL::character varying,
custom_n5 bigint,
custom_f5 numeric,
custom_d5 timestamp without time zone,
custom_t6 character varying(255) DEFAULT NULL::character varying,
custom_d6 timestamp without time zone,
custom_t7 character varying(255) DEFAULT NULL::character varying,
custom_d7 timestamp without time zone,
custom_t8 character varying(255) DEFAULT NULL::character varying,
custom_d8 timestamp without time zone,
custom_t9 character varying(255) DEFAULT NULL::character varying,
custom_d9 timestamp without time zone,
custom_t10 character varying(255) DEFAULT NULL::character varying,
custom_d10 timestamp without time zone,
custom_t11 character varying(255) DEFAULT NULL::character varying,
custom_t12 character varying(255) DEFAULT NULL::character varying,
custom_t13 character varying(255) DEFAULT NULL::character varying,
custom_t14 character varying(255) DEFAULT NULL::character varying,
custom_t15 character varying(255) DEFAULT NULL::character varying,
tablename character varying(32) DEFAULT 'res_version_x'::character varying,
initiator character varying(50) DEFAULT NULL::character varying,
dest_user character varying(128) DEFAULT NULL::character varying,
video_batch integer,
video_time integer,
video_user character varying(128) DEFAULT NULL::character varying,
video_date timestamp without time zone,
cycle_date timestamp without time zone,
coll_id character varying(32) NOT NULL,
res_id_master bigint,
CONSTRAINT res_version_x_pkey PRIMARY KEY (res_id)
)
WITH (
OIDS=FALSE
);
CREATE TABLE mlb_doctype_ext (
type_id bigint NOT NULL,
process_delay bigint NOT NULL DEFAULT '21',
delay1 bigint NOT NULL DEFAULT '14',
delay2 bigint NOT NULL DEFAULT '1',
CONSTRAINT type_id PRIMARY KEY (type_id)
)
WITH (OIDS=FALSE);
CREATE OR REPLACE VIEW res_view AS
SELECT r.tablename, r.is_multi_docservers, r.res_id, r.title, r.subject, r.page_count, r.identifier, r.doc_date, r.type_id,
d.description AS type_label, d.doctypes_first_level_id, dfl.doctypes_first_level_label, dfl.css_style as doctype_first_level_style,
d.doctypes_second_level_id, dsl.doctypes_second_level_label, dsl.css_style as doctype_second_level_style,
r.format, r.typist, r.creation_date, r.relation, r.docserver_id,
r.folders_system_id, r.path, r.filename, r.fingerprint, r.offset_doc, r.filesize, r.status,
r.work_batch, r.arbatch_id, r.arbox_id, r.is_paper, r.scan_date, r.scan_user,r.scan_location,r.scan_wkstation,
r.scan_batch,r.doc_language,r.description,r.source,r.initiator,r.destination,r.dest_user,r.policy_id,r.cycle_id,r.cycle_date,
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
r.custom_t1 AS doc_custom_t1, r.custom_t2 AS doc_custom_t2, r.custom_t3 AS doc_custom_t3,
r.custom_t4 AS doc_custom_t4, r.custom_t5 AS doc_custom_t5, r.custom_t6 AS doc_custom_t6,
r.custom_t7 AS doc_custom_t7, r.custom_t8 AS doc_custom_t8, r.custom_t9 AS doc_custom_t9,
r.custom_t10 AS doc_custom_t10, r.custom_t11 AS doc_custom_t11, r.custom_t12 AS doc_custom_t12,
r.custom_t13 AS doc_custom_t13, r.custom_t14 AS doc_custom_t14, r.custom_t15 AS doc_custom_t15,
r.custom_d1 AS doc_custom_d1, r.custom_d2 AS doc_custom_d2, r.custom_d3 AS doc_custom_d3,
r.custom_d4 AS doc_custom_d4, r.custom_d5 AS doc_custom_d5, r.custom_d6 AS doc_custom_d6,
r.custom_d7 AS doc_custom_d7, r.custom_d8 AS doc_custom_d8, r.custom_d9 AS doc_custom_d9,
r.custom_d10 AS doc_custom_d10, r.custom_n1 AS doc_custom_n1, r.custom_n2 AS doc_custom_n2,
r.custom_n3 AS doc_custom_n3, r.custom_n4 AS doc_custom_n4, r.custom_n5 AS doc_custom_n5,
r.custom_f1 AS doc_custom_f1, r.custom_f2 AS doc_custom_f2, r.custom_f3 AS doc_custom_f3,
r.custom_f4 AS doc_custom_f4, r.custom_f5 AS doc_custom_f5, r.is_frozen as res_is_frozen
FROM doctypes d, doctypes_first_level dfl, doctypes_second_level dsl, res_x r
WHERE r.type_id = d.type_id
AND d.doctypes_first_level_id = dfl.doctypes_first_level_id
AND d.doctypes_second_level_id = dsl.doctypes_second_level_id;
-- View without cases :
--CREATE OR REPLACE VIEW res_view_letterbox AS
--SELECT r.tablename, r.res_id, r.type_id, d.description AS type_label, d.doctypes_first_level_id, dfl.doctypes_first_level_label, dfl.css_style as doctype_first_level_style,
-- d.doctypes_second_level_id, dsl.doctypes_second_level_label, dsl.css_style as doctype_second_level_style,
-- r.format, r.typist, r.creation_date, r.relation, r.docserver_id, r.folders_system_id, f.folder_id, r.path, r.filename, r.fingerprint, r.filesize, r.status, r.work_batch, r.arbatch_id, r.arbox_id, r.page_count, r.is_paper, r.doc_date, r.scan_date, r.scan_user, r.scan_location, r.scan_wkstation, r.scan_batch, r.doc_language, r.description, r.source, r.author, r.custom_t1 AS doc_custom_t1, r.custom_t2 AS doc_custom_t2, r.custom_t3 AS doc_custom_t3, r.custom_t4 AS doc_custom_t4, r.custom_t5 AS doc_custom_t5, r.custom_t6 AS doc_custom_t6, r.custom_t7 AS doc_custom_t7, r.custom_t8 AS doc_custom_t8, r.custom_t9 AS doc_custom_t9, r.custom_t10 AS doc_custom_t10, r.custom_t11 AS doc_custom_t11, r.custom_t12 AS doc_custom_t12, r.custom_t13 AS doc_custom_t13, r.custom_t14 AS doc_custom_t14, r.custom_t15 AS doc_custom_t15, r.custom_d1 AS doc_custom_d1, r.custom_d2 AS doc_custom_d2, r.custom_d3 AS doc_custom_d3, r.custom_d4 AS doc_custom_d4, r.custom_d5 AS doc_custom_d5, r.custom_d6 AS doc_custom_d6, r.custom_d7 AS doc_custom_d7, r.custom_d8 AS doc_custom_d8, r.custom_d9 AS doc_custom_d9, r.custom_d10 AS doc_custom_d10, r.custom_n1 AS doc_custom_n1, r.custom_n2 AS doc_custom_n2, r.custom_n3 AS doc_custom_n3, r.custom_n4 AS doc_custom_n4, r.custom_n5 AS doc_custom_n5, r.custom_f1 AS doc_custom_f1, r.custom_f2 AS doc_custom_f2, r.custom_f3 AS doc_custom_f3, r.custom_f4 AS doc_custom_f4, r.custom_f5 AS doc_custom_f5, f.foldertype_id, ft.foldertype_label, f.custom_t1 AS fold_custom_t1, f.custom_t2 AS fold_custom_t2, f.custom_t3 AS fold_custom_t3, f.custom_t4 AS fold_custom_t4, f.custom_t5 AS fold_custom_t5, f.custom_t6 AS fold_custom_t6, f.custom_t7 AS fold_custom_t7, f.custom_t8 AS fold_custom_t8, f.custom_t9 AS fold_custom_t9, f.custom_t10 AS fold_custom_t10, f.custom_t11 AS fold_custom_t11, f.custom_t12 AS fold_custom_t12, f.custom_t13 AS fold_custom_t13, f.custom_t14 AS fold_custom_t14, f.custom_t15 AS fold_custom_t15, f.custom_d1 AS fold_custom_d1, f.custom_d2 AS fold_custom_d2, f.custom_d3 AS fold_custom_d3, f.custom_d4 AS fold_custom_d4, f.custom_d5 AS fold_custom_d5, f.custom_d6 AS fold_custom_d6, f.custom_d7 AS fold_custom_d7, f.custom_d8 AS fold_custom_d8, f.custom_d9 AS fold_custom_d9, f.custom_d10 AS fold_custom_d10, f.custom_n1 AS fold_custom_n1, f.custom_n2 AS fold_custom_n2, f.custom_n3 AS fold_custom_n3, f.custom_n4 AS fold_custom_n4, f.custom_n5 AS fold_custom_n5, f.custom_f1 AS fold_custom_f1, f.custom_f2 AS fold_custom_f2, f.custom_f3 AS fold_custom_f3, f.custom_f4 AS fold_custom_f4, f.custom_f5 AS fold_custom_f5, f.is_complete AS fold_complete, f.status AS fold_status, f.subject AS fold_subject, f.parent_id AS fold_parent_id, f.folder_level, f.folder_name, f.creation_date AS fold_creation_date, r.initiator, r.destination, r.dest_user, mlb.category_id, mlb.exp_contact_id, mlb.exp_user_id, mlb.dest_user_id, mlb.dest_contact_id, mlb.nature_id, mlb.alt_identifier, mlb.admission_date, mlb.answer_type_bitmask, mlb.other_answer_desc, mlb.process_limit_date, mlb.closing_date, mlb.alarm1_date, mlb.alarm2_date, mlb.flag_notif, mlb.flag_alarm1, mlb.flag_alarm2, r.video_user, r.video_time, r.video_batch, r.subject, r.identifier, r.title, r.priority, mlb.process_notes
-- FROM doctypes d, doctypes_first_level dfl, doctypes_second_level dsl, res_letterbox r
--LEFT JOIN ar_batch a ON r.arbatch_id = a.arbatch_id
--LEFT JOIN folders f ON r.folders_system_id = f.folders_system_id
--LEFT JOIN mlb_coll_ext mlb ON mlb.res_id = r.res_id
--LEFT JOIN foldertypes ft ON f.foldertype_id = ft.foldertype_id AND f.status::text <> 'DEL'::text
-- WHERE r.type_id = d.type_id AND d.doctypes_first_level_id = dfl.doctypes_first_level_id AND d.doctypes_second_level_id = dsl.doctypes_second_level_id;
CREATE VIEW res_view_letterbox AS
SELECT r.tablename, r.is_multi_docservers, r.res_id, r.type_id,
d.description AS type_label, d.doctypes_first_level_id,
dfl.doctypes_first_level_label, dfl.css_style as doctype_first_level_style,
d.doctypes_second_level_id, dsl.doctypes_second_level_label,
dsl.css_style as doctype_second_level_style, r.format, r.typist,
r.creation_date, r.relation, r.docserver_id, r.folders_system_id,
f.folder_id, f.is_frozen as folder_is_frozen, r.path, r.filename, r.fingerprint, r.offset_doc, r.filesize,
r.status, r.work_batch, r.arbatch_id, r.arbox_id, r.page_count, r.is_paper,
r.doc_date, r.scan_date, r.scan_user, r.scan_location, r.scan_wkstation,
r.scan_batch, r.doc_language, r.description, r.source, r.author,
r.custom_t1 AS doc_custom_t1, r.custom_t2 AS doc_custom_t2,
r.custom_t3 AS doc_custom_t3, r.custom_t4 AS doc_custom_t4,
r.custom_t5 AS doc_custom_t5, r.custom_t6 AS doc_custom_t6,
r.custom_t7 AS doc_custom_t7, r.custom_t8 AS doc_custom_t8,
r.custom_t9 AS doc_custom_t9, r.custom_t10 AS doc_custom_t10,
r.custom_t11 AS doc_custom_t11, r.custom_t12 AS doc_custom_t12,
r.custom_t13 AS doc_custom_t13, r.custom_t14 AS doc_custom_t14,
r.custom_t15 AS doc_custom_t15, r.custom_d1 AS doc_custom_d1,
r.custom_d2 AS doc_custom_d2, r.custom_d3 AS doc_custom_d3,
r.custom_d4 AS doc_custom_d4, r.custom_d5 AS doc_custom_d5,
r.custom_d6 AS doc_custom_d6, r.custom_d7 AS doc_custom_d7,
r.custom_d8 AS doc_custom_d8, r.custom_d9 AS doc_custom_d9,
r.custom_d10 AS doc_custom_d10, r.custom_n1 AS doc_custom_n1,
r.custom_n2 AS doc_custom_n2, r.custom_n3 AS doc_custom_n3,
r.custom_n4 AS doc_custom_n4, r.custom_n5 AS doc_custom_n5,
r.custom_f1 AS doc_custom_f1, r.custom_f2 AS doc_custom_f2,
r.custom_f3 AS doc_custom_f3, r.custom_f4 AS doc_custom_f4,
r.custom_f5 AS doc_custom_f5, f.foldertype_id, ft.foldertype_label,
f.custom_t1 AS fold_custom_t1, f.custom_t2 AS fold_custom_t2,
f.custom_t3 AS fold_custom_t3, f.custom_t4 AS fold_custom_t4,
f.custom_t5 AS fold_custom_t5, f.custom_t6 AS fold_custom_t6,
f.custom_t7 AS fold_custom_t7, f.custom_t8 AS fold_custom_t8,
f.custom_t9 AS fold_custom_t9, f.custom_t10 AS fold_custom_t10,
f.custom_t11 AS fold_custom_t11, f.custom_t12 AS fold_custom_t12,
f.custom_t13 AS fold_custom_t13, f.custom_t14 AS fold_custom_t14,
f.custom_t15 AS fold_custom_t15, f.custom_d1 AS fold_custom_d1,
f.custom_d2 AS fold_custom_d2, f.custom_d3 AS fold_custom_d3,
f.custom_d4 AS fold_custom_d4, f.custom_d5 AS fold_custom_d5,
f.custom_d6 AS fold_custom_d6, f.custom_d7 AS fold_custom_d7,
f.custom_d8 AS fold_custom_d8, f.custom_d9 AS fold_custom_d9,
f.custom_d10 AS fold_custom_d10, f.custom_n1 AS fold_custom_n1,
f.custom_n2 AS fold_custom_n2, f.custom_n3 AS fold_custom_n3,
f.custom_n4 AS fold_custom_n4, f.custom_n5 AS fold_custom_n5,
f.custom_f1 AS fold_custom_f1, f.custom_f2 AS fold_custom_f2,
f.custom_f3 AS fold_custom_f3, f.custom_f4 AS fold_custom_f4,
f.custom_f5 AS fold_custom_f5, f.is_complete AS fold_complete,
f.status AS fold_status, f.subject AS fold_subject,
f.parent_id AS fold_parent_id, f.folder_level, f.folder_name,
f.creation_date AS fold_creation_date, r.initiator, r.destination,
r.dest_user, mlb.category_id, mlb.exp_contact_id, mlb.exp_user_id,
mlb.dest_user_id, mlb.dest_contact_id, mlb.nature_id, mlb.alt_identifier,
mlb.admission_date, mlb.answer_type_bitmask, mlb.other_answer_desc,
mlb.process_limit_date, mlb.closing_date, mlb.alarm1_date, mlb.alarm2_date,
mlb.flag_notif, mlb.flag_alarm1, mlb.flag_alarm2, r.video_user, r.video_time,
r.video_batch, r.subject, r.identifier, r.title, r.priority, mlb.process_notes,
ca.case_id, ca.case_label, ca.case_description, en.entity_label,
cont.contact_id AS contact_id, cont.email AS contact_email,
cont.firstname AS contact_firstname, cont.lastname AS contact_lastname,
cont.society AS contact_society, u.lastname AS user_lastname,
u.firstname AS user_firstname, list.item_id AS dest_user_from_listinstance,
Yves Christian KPAKPO
committed
r.is_frozen as res_is_frozen, COALESCE(att.count_attachment, 0::bigint) AS count_attachment
FROM doctypes d, doctypes_first_level dfl, doctypes_second_level dsl,
Yves Christian KPAKPO
committed
(((((((((((ar_batch a RIGHT JOIN res_letterbox r ON ((r.arbatch_id = a.arbatch_id)))
LEFT JOIN (SELECT res_attachments.res_id_master, count(res_attachments.res_id_master) AS count_attachment
FROM res_attachments GROUP BY res_attachments.res_id_master) att ON (r.res_id = att.res_id_master))
LEFT JOIN entities en ON (((r.destination)::text = (en.entity_id)::text)))
LEFT JOIN folders f ON ((r.folders_system_id = f.folders_system_id)))
LEFT JOIN cases_res cr ON ((r.res_id = cr.res_id)))
LEFT JOIN mlb_coll_ext mlb ON ((mlb.res_id = r.res_id)))
LEFT JOIN foldertypes ft ON (((f.foldertype_id = ft.foldertype_id)
AND ((f.status)::text <> 'DEL'::text))))
LEFT JOIN cases ca ON ((cr.case_id = ca.case_id)))
LEFT JOIN contacts cont ON (((mlb.exp_contact_id = cont.contact_id)
OR (mlb.dest_contact_id = cont.contact_id))))
LEFT JOIN users u ON ((((mlb.exp_user_id)::text = (u.user_id)::text)
OR ((mlb.dest_user_id)::text = (u.user_id)::text))))
LEFT JOIN listinstance list ON (((r.res_id = list.res_id)
AND ((list.item_mode)::text = 'dest'::text))))
(d.doctypes_first_level_id = dfl.doctypes_first_level_id))
AND (d.doctypes_second_level_id = dsl.doctypes_second_level_id));
CREATE OR REPLACE VIEW res_view_apa AS
select * from res_apa;
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
CREATE TABLE doctypes_indexes
(
type_id bigint NOT NULL,
coll_id character varying(32) NOT NULL,
field_name character varying(255) NOT NULL,
mandatory character(1) NOT NULL DEFAULT 'N'::bpchar,
CONSTRAINT doctypes_indexes_pkey PRIMARY KEY (type_id, coll_id, field_name)
)
WITH (OIDS=FALSE);
-- Resource view used to fill af_target, we exclude from res_x the branches already in af_target table
CREATE OR REPLACE VIEW af_view_year_view AS
SELECT r.custom_t3 AS level1, date_part( 'year', r.doc_date) AS level2, r.custom_t4 AS level3,
r.res_id, r.creation_date, r.status -- for where clause
FROM res_x r
WHERE NOT (EXISTS ( SELECT t.level1, t.level2, t.level3
FROM af_view_year_target t
WHERE r.custom_t3::text = t.level1::text AND cast(date_part( 'year', r.doc_date) as character) = t.level2 AND r.custom_t4 = t.level3));
CREATE OR REPLACE VIEW af_view_customer_view AS
SELECT substring(r.custom_t4, 1, 1) AS level1, r.custom_t4 AS level2, date_part( 'year', r.doc_date) AS level3,
r.res_id, r.creation_date, r.status -- for where clause
FROM res_x r
WHERE status <> 'DEL' and date_part( 'year', doc_date) is not null
AND NOT (EXISTS ( SELECT t.level1, t.level2, t.level3
FROM af_view_customer_target t
WHERE substring(r.custom_t4, 1, 1)::text = t.level1::text AND r.custom_t4::text = t.level2::text
AND cast(date_part( 'year', r.doc_date) as character) = t.level3)) ;
-- View used to display trees
CREATE OR REPLACE VIEW af_view_year_target_view AS
SELECT af.level1, af.level1_id, af.level1 as level1_label, af.level2, af.level2_id, af.level2 as level2_label, af.level3, af.level3_id, af.level3 as level3_label
FROM af_view_year_target af;
CREATE OR REPLACE VIEW af_view_customer_target_view AS
SELECT af.level1, af.level1_id, af.level1 as level1_label, af.level2, af.level2_id, af.level2 as level2_label, af.level3, af.level3_id, af.level3 as level3_label
FROM af_view_customer_target af ;
Yves Christian KPAKPO
committed
-- View folders
DROP VIEW IF EXISTS view_folders;
CREATE OR REPLACE VIEW view_folders AS
SELECT folders.folders_system_id, folders.folder_id, folders.foldertype_id, foldertypes.foldertype_label, (folders.folder_id::text || ':'::text) || folders.folder_name::text AS folder_full_label, folders.parent_id, folders.folder_name, folders.subject, folders.description, folders.author, folders.typist, folders.status, folders.folder_level, folders.creation_date, folders.destination, folders.dest_user, folders.folder_out_id, folders.custom_t1, folders.custom_n1, folders.custom_f1, folders.custom_d1, folders.custom_t2, folders.custom_n2, folders.custom_f2, folders.custom_d2, folders.custom_t3, folders.custom_n3, folders.custom_f3, folders.custom_d3, folders.custom_t4, folders.custom_n4, folders.custom_f4, folders.custom_d4, folders.custom_t5, folders.custom_n5, folders.custom_f5, folders.custom_d5, folders.custom_t6, folders.custom_d6, folders.custom_t7, folders.custom_d7, folders.custom_t8, folders.custom_d8, folders.custom_t9, folders.custom_d9, folders.custom_t10, folders.custom_d10, folders.custom_t11, folders.custom_d11, folders.custom_t12, folders.custom_d12, folders.custom_t13, folders.custom_d13, folders.custom_t14, folders.custom_d14, folders.custom_t15, folders.is_complete, folders.is_folder_out, folders.last_modified_date, folders.video_status, COALESCE(r.count_document, 0::bigint) AS count_document
FROM foldertypes, folders
Yves Christian KPAKPO
committed
LEFT JOIN ( SELECT res_letterbox.folders_system_id, count(res_letterbox.folders_system_id) AS count_document
FROM res_letterbox
GROUP BY res_letterbox.folders_system_id) r ON r.folders_system_id = folders.folders_system_id
WHERE folders.foldertype_id = foldertypes.foldertype_id;
-- View for postindexing
SELECT res_view_letterbox.video_user, (users.firstname::text || ' '::text) || users.lastname::text AS user_name, res_view_letterbox.video_batch, res_view_letterbox.video_time, count(res_view_letterbox.res_id) AS count_documents, res_view_letterbox.folders_system_id, (folders.folder_id::text || ' / '::text) || folders.folder_name::text AS folder_full_label, folders.video_status
FROM res_view_letterbox
LEFT JOIN users ON res_view_letterbox.video_user::text = users.user_id::text
LEFT JOIN folders ON folders.folders_system_id = res_view_letterbox.folders_system_id
WHERE res_view_letterbox.video_batch IS NOT NULL
GROUP BY res_view_letterbox.video_user, (users.firstname::text || ' '::text) || users.lastname::text, res_view_letterbox.video_batch, res_view_letterbox.video_time, res_view_letterbox.folders_system_id, (folders.folder_id::text || ' / '::text) || folders.folder_name::text, folders.video_status;
CREATE TABLE groupbasket_status
(
system_id serial NOT NULL,
group_id character varying(32) NOT NULL,
basket_id character varying(32) NOT NULL,
action_id integer NOT NULL,
status_id character varying(32),
CONSTRAINT groupbasket_status_pkey PRIMARY KEY (system_id)
)
WITH (
OIDS=FALSE
);
CREATE TABLE groupbasket_listmodel_types
(
system_id serial NOT NULL,
group_id character varying(32) NOT NULL,
basket_id character varying(32) NOT NULL,
action_id integer NOT NULL,
listmodel_type_id character varying(50) NOT NULL,
CONSTRAINT groupbasket_listmodel_types_pkey PRIMARY KEY (system_id )
)
WITH (
OIDS=FALSE
);
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
-- ************************************************************************* --
-- --
-- RECORDS MANAGEMENT V1.0 DATABASE SCHEMA --
-- --
-- ************************************************************************* --
-- ************************************************************************* --
-- DATA TABLES --
-- ************************************************************************* --
-- ************************************************************************* --
-- MESSAGES - IOS --
-- ************************************************************************* --
-- Records Management Messages
DROP TABLE IF EXISTS rm_ios CASCADE;
CREATE TABLE rm_ios
(
io_id SERIAL NOT NULL,
io_type character varying(100) NOT NULL,
io_status character varying(10) NOT NULL,
docserver_id character varying(32) NOT NULL DEFAULT 'IOS',
io_path character varying(512),
io_filename character varying(255),
date timestamp without time zone NOT NULL,
reply_code character varying(50),
operation_date timestamp without time zone default null,
related_identifier character varying(100),
identifier character varying(100) NOT NULL,
reference_identifier character varying(100),
CONSTRAINT "rm_ios_pkey" PRIMARY KEY (io_id)
)
WITH (
OIDS=FALSE
);
-- Message comments
DROP TABLE IF EXISTS rm_comments CASCADE;
CREATE TABLE rm_comments
(
comment_id SERIAL,
io_id bigint NOT NULL,
comment text NOT NULL,
date timestamp without time zone,
author character varying(255),
CONSTRAINT "rm_comments_pkey" PRIMARY KEY (comment_id)
)
WITH (
OIDS=FALSE
);
-- ************************************************************************* --
-- ARCHIVES AND OBJECTS --
-- ************************************************************************* --
-- Archives and ArchiveObjects
DROP TABLE IF EXISTS rm_items CASCADE;
CREATE TABLE rm_items
(
item_id SERIAL,
item_type character varying(50),
parent_item_id bigint,
schedule_id bigint,
archival_agency_item_identifier character varying(100),
archival_agreement character varying(100),
archival_profile character varying(100),
description_language text NOT NULL default 'fra',
name text NOT NULL,
originating_agency_item_identifier character varying(100),
service_level text,
transferring_agency_item_identifier character varying(100),
CONSTRAINT "rm_items_pkey" PRIMARY KEY (item_id)
)
WITH (
OIDS=FALSE
);
-- Archives and ArchiveObjects ContentDescription
DROP TABLE IF EXISTS rm_content_descriptions CASCADE;
CREATE TABLE rm_content_descriptions
(
item_id bigint NOT NULL,
description text,
description_level character varying(50) NOT NULL DEFAULT 'recordgrp',
file_plan_position text,
language text NOT NULL DEFAULT 'fra',
latest_date date,
oldest_date date,
other_descriptive_data text,
CONSTRAINT "rm_content_descriptions_pkey" PRIMARY KEY (item_id)
)
WITH (
OIDS=FALSE
);
-- ContentDescription CustodialHistory
DROP TABLE IF EXISTS rm_custodial_history CASCADE;
CREATE TABLE rm_custodial_history
(
item_id bigint NOT NULL,
"when" date,
custodial_history_item text NOT NULL,
CONSTRAINT "rm_custodial_history_pkey" PRIMARY KEY (item_id)
)
WITH (
OIDS=FALSE
);
-- Archives and ArchiveObjects Appraisal Rules
DROP TABLE IF EXISTS rm_appraisal_rules CASCADE;
CREATE TABLE rm_appraisal_rules
(
appraisal_rule_id SERIAL,
parent_id bigint NOT NULL,
parent_type character varying(50) NOT NULL,
code character varying(50),
duration integer,
start_date date,
CONSTRAINT "rm_appraisal_rules_pkey" PRIMARY KEY (appraisal_rule_id)
)
WITH (
OIDS=FALSE
);
-- Archives and ArchiveObjects Access Restriction Rules
DROP TABLE IF EXISTS rm_access_restriction_rules CASCADE;
CREATE TABLE rm_access_restriction_rules
(
access_restriction_rule_id SERIAL,
parent_id bigint NOT NULL,
parent_type character varying(50) NOT NULL,
code character varying(50),
start_date date,
CONSTRAINT "rm_access_restriction_rules_pkey" PRIMARY KEY (access_restriction_rule_id)
)
WITH (
OIDS=FALSE
);
-- Documents
DROP TABLE IF EXISTS rm_documents CASCADE;
CREATE TABLE rm_documents
(
res_id SERIAL,
coll_id character varying(32),
docserver_id character varying(32) NOT NULL,
path character varying(255) DEFAULT NULL,
filename character varying(255) DEFAULT NULL,
type_id bigint NOT NULL,
item_id bigint,
format character varying(50) NOT NULL,
typist character varying(128) NOT NULL,
offset_doc character varying(255) DEFAULT NULL,
logical_adr character varying(255) DEFAULT NULL,
policy_id character varying(32) DEFAULT NULL,
cycle_id character varying(32) DEFAULT NULL,
cycle_date timestamp without time zone,
is_multi_docservers character(1) NOT NULL DEFAULT 'N'::bpchar,
is_frozen character(1) NOT NULL DEFAULT 'N'::bpchar,
publisher character varying(255) DEFAULT NULL::character varying,
contributor character varying(255) DEFAULT NULL::character varying,
author character varying(255) DEFAULT NULL::character varying,
author_name text,
identifier character varying(255) DEFAULT NULL::character varying,
source character varying(255) DEFAULT NULL::character varying,
coverage character varying(255) DEFAULT NULL::character varying,
destination character varying(50) DEFAULT NULL::character varying,
approver character varying(50) DEFAULT NULL::character varying,
archival_agency_document_identifier character varying(100),
copy character varying(1),
creation_date timestamp without time zone,
description text,
fingerprint character varying(64),
issue timestamp without time zone,
doc_language text not null default 'fra'::bpchar,
originating_agency_document_identifier character varying(100),
subject text,
receipt timestamp without time zone,
response timestamp without time zone,
filesize bigint default 0,
unit_code character varying(10) default 'A99',
status character varying(50),
submission timestamp without time zone,
transferring_agency_document_identifier character varying(100),
content_type character varying(10) DEFAULT 'CDO',
CONSTRAINT "rm_documents_pkey" PRIMARY KEY (res_id)
)
WITH (
OIDS=FALSE
);
DROP TABLE IF EXISTS adr_rm CASCADE;
CREATE TABLE adr_rm
(
res_id bigint NOT NULL,
docserver_id character varying(32) NOT NULL,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
adr_priority integer NOT NULL,
CONSTRAINT adr_rm_pkey PRIMARY KEY (res_id, docserver_id)
)
WITH (OIDS=FALSE);
-- Archives and ArchiveObjects Keywords
DROP TABLE IF EXISTS rm_keywords CASCADE;
CREATE TABLE rm_keywords
(
keyword_id SERIAL,
item_id bigint,
keyword_content text NOT NULL,
role character varying(50),
keyword_reference character varying(50),
keyword_type character varying(50),
CONSTRAINT "rm_keywords_pkey" PRIMARY KEY (keyword_id)
)
WITH (
OIDS=FALSE
);
-- ************************************************************************* --
-- ORGANIZATIONS --
-- ************************************************************************* --
-- Organizations
DROP TABLE IF EXISTS rm_organizations CASCADE;
CREATE TABLE rm_organizations
(
organization_id SERIAL,
parent_id bigint NOT NULL, -- Id of parent
parent_type character varying(50) NOT NULL, -- ArchiveTransfer, Archive, ArchiveObject, ArchiveTransferReply
role character varying(50) NOT NULL, -- TransferringAgency, ArchivalAgency, OriginatingAgency, Repository, ControlAuthority
entity_id character varying(32), -- Entity_id if related to maarch entity
business_type character varying(50),
description character varying(255),
identification character varying(100) NOT NULL,
legal_classification character varying(50),
name text,
CONSTRAINT "rm_organizations_pkey" PRIMARY KEY (organization_id)
)
WITH (
OIDS=FALSE
);
-- Addresses
DROP TABLE IF EXISTS rm_addresses CASCADE;
CREATE TABLE rm_addresses
(
address_id SERIAL,
parent_id bigint NOT NULL,
parent_type character varying(50), -- TransferringAgency, Contact...
entity_id character varying(32), -- Used if refAddress
user_id character varying(128), -- Used if refAddress
block_name character varying(255),
building_name character varying(255),
building_number character varying(255),
city_name character varying(255),
city_sub_division_name character varying(255),
country character varying(50),
floor_identification character varying(255),
postcode character varying(50),
post_office_box character varying(255),
room_identification character varying(255),
street_name character varying(255),
CONSTRAINT "rm_addresses_pkey" PRIMARY KEY (address_id)
)
WITH (
OIDS=FALSE
);
-- Contacts
DROP TABLE IF EXISTS rm_contacts CASCADE;
CREATE TABLE rm_contacts
(
contact_id SERIAL,
organization_id bigint NOT NULL,
user_id character varying(128), -- User_id of related to Maarch user
department_name character varying(255),
identification character varying(100),
person_name character varying(255),
responsibility character varying(255),
CONSTRAINT "rm_contacts_pkey" PRIMARY KEY (contact_id)
)
WITH (
OIDS=FALSE
);
-- ************************************************************************* --
-- RELATIONS --
-- ************************************************************************* --
-- Relation between ios and archives
DROP TABLE IF EXISTS rm_io_archives_relations CASCADE;
CREATE TABLE rm_io_archives_relations
(
io_id bigint NOT NULL,
item_id bigint NOT NULL,
CONSTRAINT "rm_io_archives_relations_pkey" PRIMARY KEY (io_id, item_id)
)
WITH (
OIDS=FALSE
);
-- ************************************************************************* --
-- ENTITIES --
-- ************************************************************************* --
DROP TABLE IF EXISTS rm_entities CASCADE;
CREATE TABLE rm_entities
(
entity_id character varying(32) NOT NULL,
is_archival_agency character varying(1) NOT NULL DEFAULT 'N'::bpchar,
is_originating_agency character varying(1) NOT NULL DEFAULT 'N'::bpchar,
is_transferring_agency character varying(1) NOT NULL DEFAULT 'N'::bpchar,
is_repository character varying(1) NOT NULL DEFAULT 'N'::bpchar,
is_control_authority character varying(1) NOT NULL DEFAULT 'N'::bpchar,
rm_entity_type character varying(50) NOT NULL DEFAULT 'Collectivité'::bpchar,
parallel_forms_of_names text,
other_normalized_names text,
other_names text,
oldest_date date,
latest_date date,
history text,
places text,
legal_status text,
activities text,
mandates text,
structure text,
context text,
record_id character varying(100),
institution_id character varying(255),
rules text,
status character varying(255),
detail_level character varying(255),
maintenance_dates text,
description_language character varying(100),
sources text,
maintenance_notes text,
CONSTRAINT "rm_entities_pkey" PRIMARY KEY (entity_id)
)
WITH (
OIDS=FALSE
);
-- ************************************************************************* --
-- AGREEMENTS --
-- ************************************************************************* --
DROP TABLE IF EXISTS rm_agreements CASCADE;
CREATE TABLE rm_agreements
(
agreement_id SERIAL,
identifier character varying(100) NOT NULL,
description character varying(255) NOT NULL,
comment TEXT,
archival_profile character varying(50) NOT NULL,
archival_entity_id character varying(100) NOT NULL,
transferring_entity_id character varying(100) NOT NULL,
begin_date date NOT NULL,
end_date date NOT NULL,
coll_id character varying(50) NOT NULL,
allowed_file_types TEXT NOT NULL,
transfer_max_size bigint NOT NULL DEFAULT 100000,
transfer_max_item integer NOT NULL DEFAULT 300,
transfer_count integer,
transfer_count_period character varying(20) DEFAULT 'MONTH'::bpchar,
transfer_total_size bigint NOT NULL DEFAULT 100000000,
is_enabled character(1) NOT NULL DEFAULT 'Y'::bpchar,
CONSTRAINT "rm_agreements_pkey" PRIMARY KEY (agreement_id)
)
WITH (
OIDS=FALSE
);
-- ************************************************************************* --
-- SCHEDULE --
-- ************************************************************************* --
DROP TABLE IF EXISTS rm_schedule CASCADE;
CREATE TABLE rm_schedule
(
type_id bigint not null,
appraisal_code character varying(50) NOT NULL,
appraisal_duration integer NOT NULL,
access_restriction_code character varying(50) NOT NULL,
service_level character varying(50),
notes text,
CONSTRAINT "rm_schedule_pkey" PRIMARY KEY (type_id)
)
WITH (
OIDS=FALSE
);
-- ************************************************************************* --
-- VUES --
-- ************************************************************************* --
-- Entities to organizations
DROP VIEW IF EXISTS rm_ref_organizations CASCADE;
CREATE OR REPLACE VIEW rm_ref_organizations AS
SELECT
entities.entity_id,
null as business_type,
null as description,
business_id as identification,
null as legal_classification,
entity_label as name,
null as organization_id,
null as parent_id,
null as parent_type,
'TransferringAgency' as role
FROM entities
JOIN rm_entities ON entities.entity_id = rm_entities.entity_id
WHERE business_id != '' AND is_transferring_agency = 'Y'
UNION
SELECT
entities.entity_id,
null as business_type,
null as description,
business_id as identification,
null as legal_classification,
entity_label as name,
null as organization_id,
null as parent_id,
null as parent_type,
'ArchivalAgency' as role
FROM entities
JOIN rm_entities ON entities.entity_id = rm_entities.entity_id
WHERE business_id != '' AND is_archival_agency = 'Y'
UNION
SELECT
entities.entity_id,
null as business_type,
null as description,
business_id as identification,
null as legal_classification,
entity_label as name,
null as organization_id,
null as parent_id,
null as parent_type,
'OriginatingAgency' as role
FROM entities
JOIN rm_entities ON entities.entity_id = rm_entities.entity_id
WHERE business_id != '' AND business_id != '' AND is_originating_agency = 'Y'
UNION
SELECT
entities.entity_id,
null as business_type,
null as description,
business_id as identification,
null as legal_classification,
entity_label as name,
null as organization_id,
null as parent_id,
null as parent_type,
'Repository' as role
FROM entities
JOIN rm_entities ON entities.entity_id = rm_entities.entity_id
WHERE business_id != '' AND is_repository = 'Y'
UNION
SELECT
entities.entity_id,
null as business_type,
null as description,
business_id as identification,
null as legal_classification,
entity_label as name,
null as organization_id,
null as parent_id,
null as parent_type,
'ControlAuthority' as role
FROM entities
JOIN rm_entities ON entities.entity_id = rm_entities.entity_id
WHERE business_id != '' AND is_control_authority = 'Y';
-- Entities/contacts to addresses
DROP VIEW IF EXISTS rm_ref_addresses CASCADE;
CREATE OR REPLACE VIEW rm_ref_addresses AS
SELECT
null as address_id,
null as parent_id,
null as parent_type,
entity_id,
'*' as user_id,
adrs_1 as street_name,
adrs_2 as block_name,
adrs_3 as post_office_box,
zipcode as postcode,
city as city_name,
null as building_name,
null as building_number,
null as city_sub_division_name,
null as country,
null as floor_identification,
null as room_identification
FROM entities
WHERE adrs_1 != '' OR adrs_1 != '' OR adrs_2 != '' OR adrs_3 != '' OR city != ''
UNION
SELECT
null as address_id,
null as parent_id,
null as parent_type,
entities.entity_id,
users.user_id,
adrs_1 as street_name,
adrs_2 as block_name,
adrs_3 as post_office_box,
zipcode as postcode,
city as city_name,
entity_label as room_identification,
null as building_name,
null as building_number,
null as city_sub_division_name,
null as country,
null as floor_identification
FROM users
LEFT JOIN users_entities ON users.user_id = users_entities.user_id
LEFT JOIN entities ON users_entities.entity_id = entities.entity_id
WHERE adrs_1 != '' OR adrs_1 != '' OR adrs_2 != '' OR adrs_3 != '' OR city != '';
-- Users to Contacts
DROP VIEW IF EXISTS rm_ref_contacts;
CREATE OR REPLACE VIEW rm_ref_contacts AS
SELECT
users.user_id,
NULL::bpchar AS contact_id,
NULL::bpchar AS organization_id,
NULL::bpchar AS identification,
entities.entity_label AS department_name,
users_entities.user_role AS responsibility,
(users.firstname::text || ' '::text) || users.lastname::text AS person_name
FROM users
JOIN users_entities ON users.user_id::text = users_entities.user_id::text
JOIN entities ON users_entities.entity_id::text = entities.entity_id::text;
-- RM_IOS
DROP VIEW IF EXISTS rm_ios_view;
CREATE OR REPLACE VIEW rm_ios_view AS
SELECT
rm_ios.*,
ArchivalAgency.entity_id AS archival_agency_entity_id,
ArchivalContact.user_id AS archival_user_id,
RequestingAgency.entity_id AS requesting_agency_entity_id,
RequestingContact.user_id AS requesting_user_id,
rm_comments.comment AS comment,
Archives.name as archive_name,
count(ArchiveObjects) as nb_archive_objects
FROM rm_ios
LEFT JOIN rm_organizations AS ArchivalAgency ON ArchivalAgency.parent_id = rm_ios.io_id AND ArchivalAgency.role = 'ArchivalAgency'
LEFT JOIN rm_contacts AS ArchivalContact ON ArchivalContact.organization_id =
(
SELECT organization_id
FROM rm_contacts
WHERE rm_contacts.organization_id = ArchivalAgency.organization_id
ORDER BY contact_id
LIMIT 1
)
LEFT JOIN rm_organizations AS RequestingAgency ON RequestingAgency.parent_id = rm_ios.io_id AND RequestingAgency.role IN ('TransferringAgency', 'RequestingAgency')
LEFT JOIN rm_contacts AS RequestingContact ON RequestingContact.organization_id =
(
SELECT organization_id
FROM rm_contacts
WHERE rm_contacts.organization_id = RequestingAgency.organization_id
ORDER BY contact_id
LIMIT 1
)
LEFT JOIN rm_io_archives_relations IOArchives ON IOArchives.io_id = rm_ios.io_id
LEFT JOIN rm_items AS Archives ON Archives.item_id = IOArchives.item_id
LEFT JOIN rm_items AS ArchiveObjects ON ArchiveObjects.parent_item_id = Archives.item_id
LEFT JOIN rm_comments ON rm_comments.io_id =
(
SELECT io_id
FROM rm_comments
WHERE rm_comments.io_id = rm_ios.io_id
ORDER BY comment_id
LIMIT 1
)
GROUP BY
rm_ios.io_id,
rm_ios.io_type,
rm_ios.io_status,
rm_ios.docserver_id,
rm_ios.io_path,
rm_ios.io_filename,
rm_ios.date,
rm_ios.reply_code,
rm_ios.operation_date,
rm_ios.related_identifier,
rm_ios.identifier,
rm_ios.reference_identifier,
ArchivalAgency.entity_id,
RequestingAgency.entity_id,
ArchivalContact.user_id,
RequestingContact.user_id,
Archives.Name,
rm_comments.comment;
-- RES_VIEW_RM
DROP VIEW IF EXISTS rm_documents_view;
CREATE OR REPLACE VIEW rm_documents_view AS
SELECT
rm_documents.*,
rm_items.archival_agency_item_identifier,
rm_items.description_language,
rm_items.name,
rm_items.originating_agency_item_identifier,
rm_items.service_level,
rm_items.transferring_agency_item_identifier,
rm_content_descriptions.description as content_description,
rm_content_descriptions.description_level,
rm_content_descriptions.file_plan_position,
rm_content_descriptions.language,
rm_content_descriptions.latest_date,
rm_content_descriptions.oldest_date,
rm_content_descriptions.other_descriptive_data,
rm_custodial_history.custodial_history_item,
doctypes.description as type_label,
doctypes_first_level.doctypes_first_level_id,
doctypes_first_level.doctypes_first_level_label,
doctypes_first_level.css_style as doctype_first_level_style,
doctypes_second_level.doctypes_second_level_id,
doctypes_second_level.doctypes_second_level_label,
doctypes_second_level.css_style as doctype_second_level_style,
file_plan_position.folders_system_id,
originating_agency.identification as originating_agency_identification,
originating_agency.entity_id as originating_agency_entity_id,
originating_agency.name as originating_agency_name,
rm_contacts.department_name as dest_user,
rm_appraisal_rules.code as appraisal_code,
rm_appraisal_rules.duration as appraisal_duration,
rm_appraisal_rules.start_date as appraisal_start_date,
rm_access_restriction_rules.code as access_restriction_code,
rm_access_restriction_rules.start_date as access_restriction_start_date
FROM rm_documents
LEFT JOIN rm_items on rm_items.item_id = rm_documents.item_id
LEFT JOIN rm_content_descriptions on rm_items.item_id = rm_content_descriptions.item_id
LEFT JOIN rm_custodial_history on rm_items.item_id = rm_custodial_history.item_id
LEFT JOIN doctypes on rm_documents.type_id = doctypes.type_id
LEFT JOIN doctypes_first_level ON doctypes.doctypes_first_level_id = doctypes_first_level.doctypes_first_level_id
LEFT JOIN doctypes_second_level ON doctypes.doctypes_second_level_id = doctypes_second_level.doctypes_second_level_id
LEFT JOIN rm_organizations AS originating_agency ON originating_agency.organization_id =
(
SELECT organization_id
FROM rm_organizations
WHERE rm_organizations.parent_id = rm_items.item_id AND rm_organizations.role = 'OriginatingAgency'
ORDER BY organization_id
LIMIT 1
)
LEFT JOIN rm_contacts on originating_agency.organization_id = rm_contacts.organization_id and contact_id =
(
SELECT contact_id
FROM rm_contacts
WHERE rm_contacts.organization_id = originating_agency.organization_id
ORDER BY contact_id
LIMIT 1
)
LEFT JOIN rm_appraisal_rules ON rm_appraisal_rules.parent_id = rm_items.item_id
LEFT JOIN rm_access_restriction_rules ON rm_access_restriction_rules.parent_id = rm_items.item_id
LEFT JOIN folders file_plan_position ON rm_content_descriptions.file_plan_position = file_plan_position.folder_id AND foldertype_id = '101'
LEFT JOIN folders schedule ON rm_items.schedule_id = schedule.folders_system_id
WHERE item_type = 'ArchiveObject';
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
-- log collection
-- res_log
DROP TABLE IF EXISTS res_log CASCADE;
CREATE TABLE res_log
(
res_id SERIAL,
title character varying(255) DEFAULT NULL::character varying,
subject text,
description text,
publisher character varying(255) DEFAULT NULL::character varying,
contributor character varying(255) DEFAULT NULL::character varying,
type_id bigint NOT NULL,
format character varying(50) NOT NULL,
typist character varying(128) NOT NULL,
creation_date timestamp without time zone NOT NULL,
fulltext_result character varying(10) DEFAULT NULL,
ocr_result character varying(10) DEFAULT NULL,
converter_result character varying(10) DEFAULT NULL,
author character varying(255) DEFAULT NULL::character varying,
author_name text,
identifier character varying(255) DEFAULT NULL::character varying,
source character varying(255) DEFAULT NULL::character varying,
doc_language character varying(50) DEFAULT NULL::character varying,
relation bigint,
coverage character varying(255) DEFAULT NULL::character varying,
doc_date timestamp without time zone,
docserver_id character varying(32) NOT NULL,
folders_system_id bigint,
arbox_id character varying(32) DEFAULT NULL::character varying,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
logical_adr character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
filesize bigint,
is_paper character(1) DEFAULT NULL::bpchar,
page_count integer,
scan_date timestamp without time zone,
scan_user character varying(50) DEFAULT NULL::character varying,
scan_location character varying(255) DEFAULT NULL::character varying,
scan_wkstation character varying(255) DEFAULT NULL::character varying,
scan_batch character varying(50) DEFAULT NULL::character varying,
burn_batch character varying(50) DEFAULT NULL::character varying,
scan_postmark character varying(50) DEFAULT NULL::character varying,
envelop_id bigint,
status character varying(10) NOT NULL,
destination character varying(50) DEFAULT NULL::character varying,
approver character varying(50) DEFAULT NULL::character varying,
validation_date timestamp without time zone,
work_batch bigint,
origin character varying(50) DEFAULT NULL::character varying,
is_ingoing character(1) DEFAULT NULL::bpchar,
priority smallint,
arbatch_id bigint DEFAULT NULL,
policy_id character varying(32) DEFAULT NULL::character varying,
cycle_id character varying(32) DEFAULT NULL::character varying,
cycle_date timestamp without time zone,
is_multi_docservers character(1) NOT NULL DEFAULT 'N'::bpchar,
is_frozen character(1) NOT NULL DEFAULT 'N'::bpchar,
custom_t1 text,
custom_n1 bigint,
custom_f1 numeric,
custom_d1 timestamp without time zone,
custom_t2 character varying(255) DEFAULT NULL::character varying,
custom_n2 bigint,
custom_f2 numeric,
custom_d2 timestamp without time zone,
custom_t3 character varying(255) DEFAULT NULL::character varying,
custom_n3 bigint,
custom_f3 numeric,
custom_d3 timestamp without time zone,
custom_t4 character varying(255) DEFAULT NULL::character varying,
custom_n4 bigint,
custom_f4 numeric,
custom_d4 timestamp without time zone,
custom_t5 character varying(255) DEFAULT NULL::character varying,
custom_n5 bigint,
custom_f5 numeric,
custom_d5 timestamp without time zone,
custom_t6 character varying(255) DEFAULT NULL::character varying,
custom_d6 timestamp without time zone,
custom_t7 character varying(255) DEFAULT NULL::character varying,
custom_d7 timestamp without time zone,
custom_t8 character varying(255) DEFAULT NULL::character varying,
custom_d8 timestamp without time zone,
custom_t9 character varying(255) DEFAULT NULL::character varying,
custom_d9 timestamp without time zone,
custom_t10 character varying(255) DEFAULT NULL::character varying,
custom_d10 timestamp without time zone,
custom_t11 character varying(255) DEFAULT NULL::character varying,
custom_t12 character varying(255) DEFAULT NULL::character varying,
custom_t13 character varying(255) DEFAULT NULL::character varying,
custom_t14 character varying(255) DEFAULT NULL::character varying,
custom_t15 character varying(255) DEFAULT NULL::character varying,
tablename character varying(32) DEFAULT 'res_log'::character varying,
initiator character varying(50) DEFAULT NULL::character varying,
dest_user character varying(128) DEFAULT NULL::character varying,
video_batch integer DEFAULT NULL,
video_time integer DEFAULT NULL,
video_user character varying(128) DEFAULT NULL,
video_date timestamp without time zone,
esign_proof_id character varying(255),
esign_proof_content text,
esign_content text,
esign_date timestamp without time zone,
CONSTRAINT res_log_pkey PRIMARY KEY (res_id)
)
WITH (OIDS=FALSE);
DROP TABLE IF EXISTS adr_log;
CREATE TABLE adr_log
(
res_id bigint NOT NULL,
docserver_id character varying(32) NOT NULL,
path character varying(255) DEFAULT NULL::character varying,
filename character varying(255) DEFAULT NULL::character varying,
offset_doc character varying(255) DEFAULT NULL::character varying,
fingerprint character varying(255) DEFAULT NULL::character varying,
adr_priority integer NOT NULL,
CONSTRAINT adr_log_pkey PRIMARY KEY (res_id, docserver_id)
)
WITH (OIDS=FALSE);
DROP VIEW IF EXISTS res_view_log;
CREATE OR REPLACE VIEW res_view_log AS
select * from res_log;