-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProject Schema.sql
751 lines (689 loc) · 17.7 KB
/
Project Schema.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
-- create tables
create table projects (
id number generated by default on null as identity
constraint projects_id_pk primary key,
name varchar2(255 char) not null,
owner varchar2(4000 char),
created date not null,
created_by varchar2(255 char) not null,
updated date not null,
updated_by varchar2(255 char) not null
)
;
create table milestones (
id number generated by default on null as identity
constraint milestones_id_pk primary key,
project_id number
constraint milestones_project_id_fk
references projects on delete cascade,
name varchar2(255 char) not null,
status varchar2(9 char) constraint milestones_status_ck
check (status in ('OPEN','COMPLETED','CLOSED')),
owner varchar2(4000 char),
started date,
closed date,
created date not null,
created_by varchar2(255 char) not null,
updated date not null,
updated_by varchar2(255 char) not null
)
;
-- table index
create index milestones_i1 on milestones (project_id);
create table links (
id number generated by default on null as identity
constraint links_id_pk primary key,
project_id number
constraint links_project_id_fk
references projects on delete cascade,
name varchar2(255 char) not null,
url varchar2(4000 char),
created date not null,
created_by varchar2(255 char) not null,
updated date not null,
updated_by varchar2(255 char) not null
)
;
-- table index
create index links_i1 on links (project_id);
create table attachments (
id number generated by default on null as identity
constraint attachments_id_pk primary key,
project_id number
constraint attachments_project_id_fk
references projects on delete cascade,
contributed_by varchar2(4000 char),
attachment blob,
attachment_filename varchar2(512 char),
attachment_mimetype varchar2(512 char),
attachment_charset varchar2(512 char),
attachment_lastupd date,
created date not null,
created_by varchar2(255 char) not null,
updated date not null,
updated_by varchar2(255 char) not null
)
;
-- table index
create index attachments_i1 on attachments (project_id);
create table action_items (
id number generated by default on null as identity
constraint action_items_id_pk primary key,
project_id number
constraint action_items_project_id_fk
references projects on delete cascade,
action varchar2(4000 char),
the_desc clob,
owner varchar2(4000 char),
status varchar2(9 char) constraint action_items_status_ck
check (status in ('OPEN','COMPLETED','CLOSED')),
created date not null,
created_by varchar2(255 char) not null,
updated date not null,
updated_by varchar2(255 char) not null
)
;
-- table index
create index action_items_i1 on action_items (project_id);
-- triggers
create or replace trigger action_items_biu
before insert or update
on action_items
for each row
begin
if inserting then
:new.created := sysdate;
:new.created_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end if;
:new.updated := sysdate;
:new.updated_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end action_items_biu;
/
create or replace trigger projects_biu
before insert or update
on projects
for each row
begin
if inserting then
:new.created := sysdate;
:new.created_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end if;
:new.updated := sysdate;
:new.updated_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end projects_biu;
/
create or replace trigger milestones_biu
before insert or update
on milestones
for each row
begin
if inserting then
:new.created := sysdate;
:new.created_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end if;
:new.updated := sysdate;
:new.updated_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end milestones_biu;
/
create or replace trigger links_biu
before insert or update
on links
for each row
begin
if inserting then
:new.created := sysdate;
:new.created_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end if;
:new.updated := sysdate;
:new.updated_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end links_biu;
/
create or replace trigger attachments_biu
before insert or update
on attachments
for each row
begin
if inserting then
:new.created := sysdate;
:new.created_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end if;
:new.updated := sysdate;
:new.updated_by := coalesce(sys_context('APEX$SESSION','APP_USER'),user);
end attachments_biu;
/
-- create views
create or replace view project_ms as
select
projects.id project_id,
projects.name project_name,
projects.owner project_owner,
projects.created project_created,
projects.created_by project_created_by,
projects.updated project_updated,
projects.updated_by project_updated_by,
milestones.id milestone_id,
milestones.name milestone_name,
milestones.status status,
milestones.owner milestone_owner,
milestones.started started,
milestones.closed closed,
milestones.created milestone_created,
milestones.created_by milestone_created_by,
milestones.updated milestone_updated,
milestones.updated_by milestone_updated_by
from
projects,
milestones
where
milestones.project_id(+) = projects.id
/
create or replace view project_ai as
select
projects.id project_id,
projects.name name,
projects.owner project_owner,
projects.created project_created,
projects.created_by project_created_by,
projects.updated project_updated,
projects.updated_by project_updated_by,
action_items.id action_item_id,
action_items.action action,
action_items.the_desc the_desc,
action_items.owner action_item_owner,
action_items.status status,
action_items.created action_item_created,
action_items.created_by action_item_created_by,
action_items.updated action_item_updated,
action_items.updated_by action_item_updated_by
from
projects,
action_items
where
action_items.project_id(+) = projects.id
/
-- load data
insert into projects (
id,
name,
owner
) values (
1,
'Tablet Automation Rollout',
'Gricelda Luebbers'
);
insert into projects (
id,
name,
owner
) values (
2,
'Eloqua Marketing Program',
'Dean Bollich'
);
insert into projects (
id,
name,
owner
) values (
3,
'Employee Profile Management',
'Milo Manoni'
);
insert into projects (
id,
name,
owner
) values (
4,
'Selection Development',
'Laurice Karl'
);
insert into projects (
id,
name,
owner
) values (
5,
'Budget Forecasting Upgrade',
'August Rupel'
);
commit;
-- load data
-- load data
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
1,
4,
'Tablet Automation Rollout',
'OPEN',
'Gricelda Luebbers',
sysdate - 15,
sysdate - 92
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
2,
1,
'Eloqua Marketing Program',
'OPEN',
'Dean Bollich',
sysdate - 53,
sysdate - 12
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
3,
3,
'Employee Profile Management',
'OPEN',
'Milo Manoni',
sysdate - 2,
sysdate - 24
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
4,
2,
'Selection Development',
'OPEN',
'Laurice Karl',
sysdate - 19,
sysdate - 15
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
5,
3,
'Budget Forecasting Upgrade',
'CLOSED',
'August Rupel',
sysdate - 28,
sysdate - 31
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
6,
2,
'SOA Upgrade',
'COMPLETED',
'Salome Guisti',
sysdate - 74,
sysdate - 55
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
7,
3,
'Onboard German Subsidiary',
'OPEN',
'Lovie Ritacco',
sysdate - 62,
sysdate - 58
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
8,
3,
'Time Assessment',
'OPEN',
'Chaya Greczkowski',
sysdate - 99,
sysdate - 59
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
9,
3,
'Database PDB Consolidation',
'OPEN',
'Twila Coolbeth',
sysdate - 93,
sysdate - 40
);
insert into milestones (
id,
project_id,
name,
status,
owner,
started,
closed
) values (
10,
2,
'Zero Downtime Upgrade',
'OPEN',
'Carlotta Achenbach',
sysdate - 63,
sysdate - 16
);
commit;
-- load data
insert into links (
id,
project_id,
name,
url
) values (
1,
5,
'Tablet Automation Rollout',
'aaac.batavia.com'
);
insert into links (
id,
project_id,
name,
url
) values (
2,
2,
'Eloqua Marketing Program',
'aaac.muez.com'
);
insert into links (
id,
project_id,
name,
url
) values (
3,
1,
'Employee Profile Management',
'aaae.fustanes.net'
);
insert into links (
id,
project_id,
name,
url
) values (
4,
4,
'Selection Development',
'aaac.rumichaca.com'
);
insert into links (
id,
project_id,
name,
url
) values (
5,
5,
'Budget Forecasting Upgrade',
'aaab.chatuce.com'
);
commit;
-- load data
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
1,
4,
'Eu lorem commodo ullamcorper.Interdum et malesuada fames ac ante ipsum primis in faucibus. Ut id nulla ac sapien suscipit tristique ac volutpat risus.Phasellus vitae ligula commodo, dictum lorem sit amet, imperdiet ex. Etiam cursus porttitor tincidunt. Vestibulum ante ipsumprimis in faucibus orci luctus et ultrices posuere cubilia.',
'x',
'Gricelda Luebbers',
'OPEN'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
2,
5,
'Elementum sodales. Proin sit amet massa eu lorem commodo ullamcorper.Interdum et malesuada fames.',
'x',
'Dean Bollich',
'COMPLETED'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
3,
4,
'Pharetra, id mattis risus rhoncus.Cras vulputate porttitor ligula. Nam semper diam suscipit elementum sodales. Proin sit amet massa eu lorem commodo ullamcorper.Interdum et malesuada fames ac ante ipsum primis in faucibus. Ut id nulla.',
'x',
'Milo Manoni',
'CLOSED'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
4,
4,
'Sapien suscipit tristique ac volutpat risus.Phasellus vitae ligula commodo, dictum lorem sit amet, imperdiet ex. Etiam cursus porttitor tincidunt. Vestibulum ante ipsumprimis.',
'x',
'Laurice Karl',
'OPEN'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
5,
2,
'Lorem commodo ullamcorper.Interdum et malesuada fames ac.',
'x',
'August Rupel',
'COMPLETED'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
6,
1,
'Volutpat risus.Phasellus vitae ligula commodo, dictum lorem sit amet, imperdiet ex. Etiam cursus porttitor tincidunt. Vestibulum ante ipsumprimis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vulputate placerat pellentesque. Proin viverra lacinialectus, quis consectetur mi venenatis nec. Donec convallis sollicitudin elementum. Nulla facilisi. In.',
'x',
'Salome Guisti',
'CLOSED'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
7,
5,
'In massa pharetra, id mattis risus rhoncus.Cras vulputate porttitor ligula. Nam semper diam suscipit elementum sodales. Proin sit amet massa eu lorem.',
'x',
'Lovie Ritacco',
'OPEN'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
8,
3,
'Ligula. Nam semper diam suscipit elementum sodales. Proin.',
'x',
'Chaya Greczkowski',
'COMPLETED'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
9,
4,
'Mattis risus rhoncus.Cras vulputate porttitor ligula. Nam semper diam suscipit elementum sodales. Proin sit amet massa eu lorem commodo ullamcorper.Interdum et malesuada fames ac ante ipsum primis in faucibus. Ut id nulla ac sapien suscipit tristique ac volutpat risus.Phasellus vitae ligula commodo, dictum lorem sit amet, imperdiet ex. Etiam cursus porttitor tincidunt. Vestibulum ante.',
'x',
'Twila Coolbeth',
'CLOSED'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
10,
1,
'Mi venenatis nec. Donec convallis sollicitudin elementum. Nulla facilisi. In posuere blandit leoeget malesuada. Vivamus efficitur ipsum tellus, quis posuere mi maximus vitae. Quisque tortor odio, feugiat eget sagittisvel, pretium ut metus. Duis et commodo arcu.',
'x',
'Carlotta Achenbach',
'OPEN'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
11,
3,
'Tristique ac volutpat risus.Phasellus vitae ligula commodo, dictum lorem sit amet, imperdiet ex. Etiam cursus porttitor tincidunt. Vestibulum ante ipsumprimis in faucibus orci luctus et ultrices posuere cubilia Curae; Proin vulputate placerat pellentesque.',
'x',
'Jeraldine Audet',
'COMPLETED'
);
insert into action_items (
id,
project_id,
action,
the_desc,
owner,
status
) values (
12,
2,
'Massa eu lorem commodo ullamcorper.Interdum.',
'x',
'August Arouri',
'CLOSED'
);
commit;
-- Generated by Quick SQL Saturday August 06, 2022 02:49:07
/*
#apex: true, auditcols: true
projects /insert 5
name /nn
owner
milestones /insert 10
name /nn
status /check open completed closed /values open, open, open, open, closed, completed
owner
started date
closed date
links /insert 5
name /nn
url
attachments
contributed by
attachment file
action items /insert 12
action
desc clob
owner
status /check open completed closed
view project_ms projects milestones
view project_ai projects action_items
# settings = { semantics: "CHAR", auditCols: true, language: "EN", APEX: true }
*/