-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path105_232_dump.txt
2506 lines (1733 loc) · 62.9 KB
/
105_232_dump.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
--
-- PostgreSQL database dump
--
SET client_encoding = 'UTF8';
SET standard_conforming_strings = off;
SET check_function_bodies = false;
SET client_min_messages = warning;
SET escape_string_warning = off;
SET search_path = public, pg_catalog;
SET default_tablespace = '';
SET default_with_oids = false;
--
-- Name: advanceassignment; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE advanceassignment (
id bigint NOT NULL,
version bigint NOT NULL,
reportglobaladvance boolean,
advance_type_id bigint
);
ALTER TABLE public.advanceassignment OWNER TO naval;
--
-- Name: advancemeasurement; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE advancemeasurement (
id bigint NOT NULL,
version bigint NOT NULL,
date date,
value numeric(19,2),
advance_assignment_id bigint
);
ALTER TABLE public.advancemeasurement OWNER TO naval;
--
-- Name: advancetype; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE advancetype (
id bigint NOT NULL,
version bigint NOT NULL,
unitname character varying(255),
defaultmaxvalue numeric(19,4),
updatable boolean,
unitprecision numeric(19,4),
active boolean,
percentage boolean
);
ALTER TABLE public.advancetype OWNER TO naval;
--
-- Name: all_criterions; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE all_criterions (
generic_resource_allocation_id bigint NOT NULL,
criterion_id bigint NOT NULL
);
ALTER TABLE public.all_criterions OWNER TO naval;
--
-- Name: assignment_function; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE assignment_function (
id bigint NOT NULL,
version bigint NOT NULL
);
ALTER TABLE public.assignment_function OWNER TO naval;
--
-- Name: basecalendar; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE basecalendar (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255)
);
ALTER TABLE public.basecalendar OWNER TO naval;
--
-- Name: calendardata; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE calendardata (
id bigint NOT NULL,
version bigint NOT NULL,
parent bigint,
expiringdate date,
base_calendar_id bigint,
position_in_calendar integer
);
ALTER TABLE public.calendardata OWNER TO naval;
--
-- Name: configuration; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE configuration (
id bigint NOT NULL,
version bigint NOT NULL,
configuration_id bigint
);
ALTER TABLE public.configuration OWNER TO naval;
--
-- Name: criterion; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE criterion (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255),
active boolean,
id_criterion_type bigint NOT NULL,
parent bigint
);
ALTER TABLE public.criterion OWNER TO naval;
--
-- Name: criterion_type_work_report_type; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE criterion_type_work_report_type (
work_report_type_id bigint NOT NULL,
criterion_type_id bigint NOT NULL
);
ALTER TABLE public.criterion_type_work_report_type OWNER TO naval;
--
-- Name: criterion_work_report_line; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE criterion_work_report_line (
work_report_line_id bigint NOT NULL,
criterion_id bigint NOT NULL
);
ALTER TABLE public.criterion_work_report_line OWNER TO naval;
--
-- Name: criterionrequirement; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE criterionrequirement (
id bigint NOT NULL,
criterion_requirement_type character varying(255) NOT NULL,
version bigint NOT NULL,
hours_group_id bigint,
order_element_id bigint,
criterion_id bigint,
parent bigint,
isvalid boolean
);
ALTER TABLE public.criterionrequirement OWNER TO naval;
--
-- Name: criterionsatisfaction; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE criterionsatisfaction (
id bigint NOT NULL,
version bigint NOT NULL,
startdate timestamp without time zone NOT NULL,
finishdate timestamp without time zone,
isdeleted boolean,
criterion bigint NOT NULL,
resource bigint NOT NULL
);
ALTER TABLE public.criterionsatisfaction OWNER TO naval;
--
-- Name: criteriontype; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE criteriontype (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255),
description character varying(255),
allowsimultaneouscriterionsperresource boolean,
allowhierarchy boolean,
enabled boolean,
resource integer
);
ALTER TABLE public.criteriontype OWNER TO naval;
--
-- Name: day_assignment; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE day_assignment (
id bigint NOT NULL,
day_assignment_type character varying(255) NOT NULL,
version bigint NOT NULL,
hours integer NOT NULL,
day date NOT NULL,
resource_id bigint NOT NULL,
specific_resource_allocation_id bigint,
generic_resource_allocation_id bigint
);
ALTER TABLE public.day_assignment OWNER TO naval;
--
-- Name: dependency; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE dependency (
id bigint NOT NULL,
version bigint NOT NULL,
origin bigint,
destination bigint,
type integer
);
ALTER TABLE public.dependency OWNER TO naval;
--
-- Name: directadvanceassignment; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE directadvanceassignment (
advance_assignment_id bigint NOT NULL,
direct_order_element_id bigint,
maxvalue numeric(19,2)
);
ALTER TABLE public.directadvanceassignment OWNER TO naval;
--
-- Name: exceptionday; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE exceptionday (
id bigint NOT NULL,
version bigint NOT NULL,
date date,
hours integer,
base_calendar_id bigint
);
ALTER TABLE public.exceptionday OWNER TO naval;
--
-- Name: generic_resource_allocation; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE generic_resource_allocation (
resource_allocation_id bigint NOT NULL
);
ALTER TABLE public.generic_resource_allocation OWNER TO naval;
--
-- Name: hibernate_sequence; Type: SEQUENCE; Schema: public; Owner: naval
--
CREATE SEQUENCE hibernate_sequence
INCREMENT BY 1
NO MAXVALUE
NO MINVALUE
CACHE 1;
ALTER TABLE public.hibernate_sequence OWNER TO naval;
--
-- Name: hibernate_sequence; Type: SEQUENCE SET; Schema: public; Owner: naval
--
SELECT pg_catalog.setval('hibernate_sequence', 1260, true);
--
-- Name: hibernate_unique_key; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE hibernate_unique_key (
next_hi integer
);
ALTER TABLE public.hibernate_unique_key OWNER TO naval;
--
-- Name: hoursgroup; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE hoursgroup (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255),
resourcetype bytea,
workinghours integer,
percentage numeric(19,2),
fixedpercentage boolean,
parent_order_line bigint NOT NULL
);
ALTER TABLE public.hoursgroup OWNER TO naval;
--
-- Name: hoursperday; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE hoursperday (
base_calendar_id bigint NOT NULL,
hours integer,
day_id integer NOT NULL
);
ALTER TABLE public.hoursperday OWNER TO naval;
--
-- Name: indirectadvanceassignment; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE indirectadvanceassignment (
advance_assignment_id bigint NOT NULL,
indirect_order_element_id bigint
);
ALTER TABLE public.indirectadvanceassignment OWNER TO naval;
--
-- Name: label; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE label (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255),
label_type_id bigint
);
ALTER TABLE public.label OWNER TO naval;
--
-- Name: label_type; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE label_type (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255)
);
ALTER TABLE public.label_type OWNER TO naval;
--
-- Name: machine; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE machine (
machine_id bigint NOT NULL,
code character varying(255),
name character varying(255),
description character varying(255)
);
ALTER TABLE public.machine OWNER TO naval;
--
-- Name: machine_configuration_unit_required_criterions; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE machine_configuration_unit_required_criterions (
id bigint NOT NULL,
criterion_id bigint NOT NULL
);
ALTER TABLE public.machine_configuration_unit_required_criterions OWNER TO naval;
--
-- Name: machineworkerassignment; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE machineworkerassignment (
id bigint NOT NULL,
version bigint NOT NULL,
startdate timestamp without time zone,
finishdate timestamp without time zone,
configuration_id bigint NOT NULL,
worker_id bigint
);
ALTER TABLE public.machineworkerassignment OWNER TO naval;
--
-- Name: machineworkersconfigurationunit; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE machineworkersconfigurationunit (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255) NOT NULL,
alpha numeric(19,2) NOT NULL,
machine bigint NOT NULL
);
ALTER TABLE public.machineworkersconfigurationunit OWNER TO naval;
--
-- Name: material; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE material (
id bigint NOT NULL,
version bigint NOT NULL,
code character varying(255) NOT NULL,
description character varying(255),
default_unit_price numeric(19,2),
unit_type integer,
disabled boolean,
category_id bigint
);
ALTER TABLE public.material OWNER TO naval;
--
-- Name: material_category; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE material_category (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255),
parent_id bigint
);
ALTER TABLE public.material_category OWNER TO naval;
--
-- Name: order_element_label; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE order_element_label (
order_element_id bigint NOT NULL,
label_id bigint NOT NULL
);
ALTER TABLE public.order_element_label OWNER TO naval;
--
-- Name: order_table; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE order_table (
orderelementid bigint NOT NULL,
responsible character varying(255),
customer character varying(255),
dependenciesconstraintshavepriority boolean,
base_calendar_id bigint
);
ALTER TABLE public.order_table OWNER TO naval;
--
-- Name: orderelement; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE orderelement (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255),
initdate timestamp without time zone,
deadline timestamp without time zone,
mandatoryinit boolean,
mandatoryend boolean,
description character varying(255),
code character varying(255),
schedulingstatetype integer,
parent bigint,
positionincontainer integer
);
ALTER TABLE public.orderelement OWNER TO naval;
--
-- Name: orderline; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE orderline (
orderelementid bigint NOT NULL
);
ALTER TABLE public.orderline OWNER TO naval;
--
-- Name: orderlinegroup; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE orderlinegroup (
orderelementid bigint NOT NULL
);
ALTER TABLE public.orderlinegroup OWNER TO naval;
--
-- Name: resource; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE resource (
id bigint NOT NULL,
version bigint NOT NULL,
calendar bigint
);
ALTER TABLE public.resource OWNER TO naval;
--
-- Name: resourceallocation; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE resourceallocation (
id bigint NOT NULL,
version bigint NOT NULL,
resourcesperday numeric(19,2),
task bigint,
assignment_function bigint
);
ALTER TABLE public.resourceallocation OWNER TO naval;
--
-- Name: resourcecalendar; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE resourcecalendar (
base_calendar_id bigint NOT NULL
);
ALTER TABLE public.resourcecalendar OWNER TO naval;
--
-- Name: specific_resource_allocation; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE specific_resource_allocation (
resource_allocation_id bigint NOT NULL,
resource bigint
);
ALTER TABLE public.specific_resource_allocation OWNER TO naval;
--
-- Name: stretches; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE stretches (
assignment_function_id bigint NOT NULL,
date date NOT NULL,
lengthpercentage numeric(19,2) NOT NULL,
amountworkpercentage numeric(19,2) NOT NULL,
stretch_position integer NOT NULL
);
ALTER TABLE public.stretches OWNER TO naval;
--
-- Name: stretchesfunction; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE stretchesfunction (
assignment_function_id bigint NOT NULL
);
ALTER TABLE public.stretchesfunction OWNER TO naval;
--
-- Name: task; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE task (
task_element_id bigint NOT NULL,
calculatedvalue integer,
startconstrainttype integer,
constraintdate timestamp without time zone
);
ALTER TABLE public.task OWNER TO naval;
--
-- Name: task_source_hours_groups; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE task_source_hours_groups (
task_source_id bigint NOT NULL,
hours_group_id bigint NOT NULL
);
ALTER TABLE public.task_source_hours_groups OWNER TO naval;
--
-- Name: taskelement; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE taskelement (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255),
notes character varying(255),
startdate timestamp without time zone,
enddate timestamp without time zone,
deadline date,
parent bigint,
base_calendar_id bigint,
positioninparent integer
);
ALTER TABLE public.taskelement OWNER TO naval;
--
-- Name: taskgroup; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE taskgroup (
task_element_id bigint NOT NULL
);
ALTER TABLE public.taskgroup OWNER TO naval;
--
-- Name: taskmilestone; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE taskmilestone (
task_element_id bigint NOT NULL
);
ALTER TABLE public.taskmilestone OWNER TO naval;
--
-- Name: tasksource; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE tasksource (
id bigint NOT NULL,
version bigint NOT NULL,
orderelement bigint
);
ALTER TABLE public.tasksource OWNER TO naval;
--
-- Name: work_report; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE work_report (
id bigint NOT NULL,
version bigint NOT NULL,
date timestamp without time zone,
place character varying(255),
responsible character varying(255),
work_report_type_id bigint NOT NULL
);
ALTER TABLE public.work_report OWNER TO naval;
--
-- Name: work_report_line; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE work_report_line (
id bigint NOT NULL,
version bigint NOT NULL,
numhours integer,
work_report_id bigint,
resource_id bigint NOT NULL,
order_element_id bigint NOT NULL
);
ALTER TABLE public.work_report_line OWNER TO naval;
--
-- Name: work_report_type; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE work_report_type (
id bigint NOT NULL,
version bigint NOT NULL,
name character varying(255)
);
ALTER TABLE public.work_report_type OWNER TO naval;
--
-- Name: worker; Type: TABLE; Schema: public; Owner: naval; Tablespace:
--
CREATE TABLE worker (
worker_id bigint NOT NULL,
firstname character varying(255),
surname character varying(255),
nif character varying(255)
);
ALTER TABLE public.worker OWNER TO naval;
--
-- Data for Name: advanceassignment; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY advanceassignment (id, version, reportglobaladvance, advance_type_id) FROM stdin;
1122 7 t 505
3243 3 t 505
\.
--
-- Data for Name: advancemeasurement; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY advancemeasurement (id, version, date, value, advance_assignment_id) FROM stdin;
\.
--
-- Data for Name: advancetype; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY advancetype (id, version, unitname, defaultmaxvalue, updatable, unitprecision, active, percentage) FROM stdin;
505 3 children 100.0000 f 0.0100 t t
506 2 percentage 100.0000 f 0.0100 t t
507 1 units 2147483647.0000 f 1.0000 t f
\.
--
-- Data for Name: all_criterions; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY all_criterions (generic_resource_allocation_id, criterion_id) FROM stdin;
1415 405
\.
--
-- Data for Name: assignment_function; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY assignment_function (id, version) FROM stdin;
\.
--
-- Data for Name: basecalendar; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY basecalendar (id, version, name) FROM stdin;
1 1 Default
2 1 \N
3 1 \N
4 3 \N
\.
--
-- Data for Name: calendardata; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY calendardata (id, version, parent, expiringdate, base_calendar_id, position_in_calendar) FROM stdin;
101 1 \N \N 1 0
102 1 1 \N 2 0
103 1 1 \N 3 0
104 3 1 \N 4 0
\.
--
-- Data for Name: configuration; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY configuration (id, version, configuration_id) FROM stdin;
202 1 1
\.
--
-- Data for Name: criterion; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY criterion (id, version, name, active, id_criterion_type, parent) FROM stdin;
404 14 medicalLeave t 98304 \N
405 13 paternityLeave t 98304 \N
406 4 hiredResourceWorkingRelationship t 98308 \N
407 3 firedResourceWorkingRelationship t 98308 \N
408 1 m3 t 98310 \N
409 1 m1 t 98310 \N
410 1 m2 t 98310 \N
\.
--
-- Data for Name: criterion_type_work_report_type; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY criterion_type_work_report_type (work_report_type_id, criterion_type_id) FROM stdin;
\.
--
-- Data for Name: criterion_work_report_line; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY criterion_work_report_line (work_report_line_id, criterion_id) FROM stdin;
\.
--
-- Data for Name: criterionrequirement; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY criterionrequirement (id, criterion_requirement_type, version, hours_group_id, order_element_id, criterion_id, parent, isvalid) FROM stdin;
\.
--
-- Data for Name: criterionsatisfaction; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY criterionsatisfaction (id, version, startdate, finishdate, isdeleted, criterion, resource) FROM stdin;
707 1 2009-11-25 20:09:26.083 \N f 405 606
\.
--
-- Data for Name: criteriontype; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY criteriontype (id, version, name, description, allowsimultaneouscriterionsperresource, allowhierarchy, enabled, resource) FROM stdin;
98304 15 LEAVE Leave f f t 1
98305 11 CATEGORY Professional category t t t 1
98306 9 TRAINING Training courses and labor training t t t 1
98307 7 JOB Job t t t 1
98308 5 WORK_RELATIONSHIP Relationship of the resource with the enterprise f f t 1
98309 2 LOCATION_GROUP Location where the resource work t f t 0
98310 1 Criterio maquina \N t t t 2
\.
--
-- Data for Name: day_assignment; Type: TABLE DATA; Schema: public; Owner: naval
--
COPY day_assignment (id, day_assignment_type, version, hours, day, resource_id, specific_resource_allocation_id, generic_resource_allocation_id) FROM stdin;
3772 SPECIFIC_DAY 0 40 2010-02-16 607 3637 \N
3773 SPECIFIC_DAY 0 40 2010-01-25 607 3637 \N
3774 SPECIFIC_DAY 0 40 2010-02-01 607 3637 \N
3775 SPECIFIC_DAY 0 0 2010-01-23 607 3637 \N
3776 SPECIFIC_DAY 0 40 2010-01-26 607 3637 \N
3777 SPECIFIC_DAY 0 40 2010-02-03 607 3637 \N
3778 SPECIFIC_DAY 0 0 2010-01-30 607 3637 \N
3779 SPECIFIC_DAY 0 40 2010-02-12 607 3637 \N
3780 SPECIFIC_DAY 0 0 2010-02-14 607 3637 \N
3781 SPECIFIC_DAY 0 0 2010-02-07 607 3637 \N
3782 SPECIFIC_DAY 0 40 2010-01-28 607 3637 \N
3783 SPECIFIC_DAY 0 40 2010-01-21 607 3637 \N
3784 SPECIFIC_DAY 0 0 2010-02-20 607 3637 \N
3785 SPECIFIC_DAY 0 40 2010-02-09 607 3637 \N
3786 SPECIFIC_DAY 0 40 2010-02-15 607 3637 \N
3787 SPECIFIC_DAY 0 0 2010-01-31 607 3637 \N
3788 SPECIFIC_DAY 0 40 2010-02-02 607 3637 \N
3789 SPECIFIC_DAY 0 0 2010-02-06 607 3637 \N
3790 SPECIFIC_DAY 0 0 2010-02-21 607 3637 \N
3791 SPECIFIC_DAY 0 40 2010-01-22 607 3637 \N
3792 SPECIFIC_DAY 0 40 2010-01-29 607 3637 \N
3793 SPECIFIC_DAY 0 0 2010-01-24 607 3637 \N
3794 SPECIFIC_DAY 0 0 2010-02-13 607 3637 \N
3795 SPECIFIC_DAY 0 40 2010-02-10 607 3637 \N
3796 SPECIFIC_DAY 0 40 2010-02-05 607 3637 \N
3797 SPECIFIC_DAY 0 40 2010-02-04 607 3637 \N
3798 SPECIFIC_DAY 0 40 2010-02-18 607 3637 \N
3799 SPECIFIC_DAY 0 40 2010-02-17 607 3637 \N
3800 SPECIFIC_DAY 0 40 2010-01-20 607 3637 \N
3801 SPECIFIC_DAY 0 40 2010-02-19 607 3637 \N
3802 SPECIFIC_DAY 0 40 2010-02-23 607 3637 \N
3803 SPECIFIC_DAY 0 40 2010-02-08 607 3637 \N
3804 SPECIFIC_DAY 0 40 2010-02-11 607 3637 \N
3805 SPECIFIC_DAY 0 40 2010-01-27 607 3637 \N
3806 SPECIFIC_DAY 0 40 2010-02-22 607 3637 \N
2740 GENERIC_DAY 0 8 2010-09-17 606 \N 1415
2741 GENERIC_DAY 0 8 2010-06-12 606 \N 1415
2742 GENERIC_DAY 0 8 2010-07-05 606 \N 1415
2743 GENERIC_DAY 0 8 2010-09-18 606 \N 1415
2744 GENERIC_DAY 0 8 2010-07-17 606 \N 1415
2745 GENERIC_DAY 0 8 2010-07-14 606 \N 1415
2746 GENERIC_DAY 0 8 2010-08-06 606 \N 1415
2747 GENERIC_DAY 0 8 2010-06-22 606 \N 1415
2748 GENERIC_DAY 0 8 2010-09-01 606 \N 1415
2749 GENERIC_DAY 0 8 2010-05-22 606 \N 1415
2750 GENERIC_DAY 0 8 2010-07-04 606 \N 1415
2751 GENERIC_DAY 0 8 2010-09-07 606 \N 1415
2752 GENERIC_DAY 0 8 2010-05-31 606 \N 1415
2753 GENERIC_DAY 0 8 2010-07-29 606 \N 1415
2754 GENERIC_DAY 0 8 2010-08-23 606 \N 1415
2755 GENERIC_DAY 0 8 2010-08-22 606 \N 1415
2756 GENERIC_DAY 0 8 2010-08-26 606 \N 1415
2757 GENERIC_DAY 0 8 2010-08-13 606 \N 1415
2758 GENERIC_DAY 0 8 2010-07-31 606 \N 1415
2759 GENERIC_DAY 0 8 2010-06-24 606 \N 1415
2760 GENERIC_DAY 0 8 2010-08-25 606 \N 1415
2761 GENERIC_DAY 0 8 2010-07-28 606 \N 1415
2762 GENERIC_DAY 0 8 2010-09-19 606 \N 1415
2763 GENERIC_DAY 0 8 2010-06-03 606 \N 1415
2764 GENERIC_DAY 0 8 2010-08-05 606 \N 1415
2765 GENERIC_DAY 0 8 2010-09-15 606 \N 1415
2766 GENERIC_DAY 0 8 2010-07-11 606 \N 1415
2767 GENERIC_DAY 0 8 2010-06-11 606 \N 1415
2768 GENERIC_DAY 0 8 2010-09-12 606 \N 1415
2769 GENERIC_DAY 0 8 2010-05-28 606 \N 1415
2770 GENERIC_DAY 0 8 2010-08-24 606 \N 1415
2771 GENERIC_DAY 0 8 2010-07-26 606 \N 1415
2772 GENERIC_DAY 0 8 2010-06-20 606 \N 1415
2773 GENERIC_DAY 0 8 2010-09-16 606 \N 1415
2774 GENERIC_DAY 0 8 2010-08-04 606 \N 1415
2775 GENERIC_DAY 0 8 2010-07-21 606 \N 1415
2776 GENERIC_DAY 0 8 2010-09-02 606 \N 1415
2777 GENERIC_DAY 0 8 2010-07-27 606 \N 1415
2778 GENERIC_DAY 0 8 2010-06-14 606 \N 1415
2779 GENERIC_DAY 0 8 2010-06-18 606 \N 1415
2780 GENERIC_DAY 0 8 2010-06-21 606 \N 1415
2781 GENERIC_DAY 0 8 2010-07-02 606 \N 1415
2782 GENERIC_DAY 0 8 2010-07-13 606 \N 1415
2783 GENERIC_DAY 0 8 2010-05-27 606 \N 1415
2784 GENERIC_DAY 0 8 2010-08-14 606 \N 1415
2785 GENERIC_DAY 0 8 2010-08-16 606 \N 1415