Newer
Older
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
create table o_forum (
forum_id int8 not null,
version int4 not null,
creationdate timestamp,
primary key (forum_id)
);
create table o_property (
id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
identity int8,
grp int8,
resourcetypename varchar(50),
resourcetypeid int8,
category varchar(33),
name varchar(255) not null,
floatvalue float(24),
longvalue int8,
stringvalue varchar(255),
textvalue TEXT,
primary key (id)
);
create table o_bs_secgroup (
id int8 not null,
version int4 not null,
creationdate timestamp,
primary key (id)
);
create table o_gp_business (
group_id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
lastusage timestamp,
businessgrouptype varchar(15) not null,
groupname varchar(255),
descr text,
minparticipants int4,
maxparticipants int4,
waitinglist_enabled bool,
autocloseranks_enabled bool,
groupcontext_fk int8,
fk_ownergroup int8 unique,
fk_partipiciantgroup int8 unique,
fk_waitinggroup int8 unique,
primary key (group_id)
);
create table o_gp_business_to_resource (
g_id bigint not null,
version int4 not null,
creationdate timestamp,
fk_resource int8 not null,
fk_group int8 not null,
primary key (g_id)
);
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
create table o_temporarykey (
reglist_id int8 not null,
version int4 not null,
creationdate timestamp,
email varchar(255) not null,
regkey varchar(255) not null,
ip varchar(255) not null,
mailsent bool not null,
action varchar(255) not null,
primary key (reglist_id)
);
create table o_bs_authentication (
id int8 not null,
version int4 not null,
creationdate timestamp,
identity_fk int8 not null,
provider varchar(8),
authusername varchar(255),
credential varchar(255),
primary key (id),
unique (provider, authusername)
);
create table o_noti_pub (
publisher_id int8 not null,
version int4 not null,
creationdate timestamp,
publishertype varchar(50) not null,
data text,
resname varchar(50),
resid int8,
subident varchar(128),
businesspath varchar(255),
state int4,
latestnews timestamp not null,
primary key (publisher_id)
);
create table o_qtiresultset (
resultset_id int8 not null,
version int4 not null,
lastmodified timestamp not null,
creationdate timestamp,
identity_id int8 not null,
olatresource_fk int8 not null,
olatresourcedetail varchar(255) not null,
assessmentid int8 not null,
repositoryref_fk int8 not null,
ispassed bool,
score float(24),
duration int8,
primary key (resultset_id)
);
create table o_bs_identity (
id int8 not null,
version int4 not null,
creationdate timestamp,
lastlogin timestamp,
name varchar(128) not null unique,
status integer,
fk_user_id int8 unique,
primary key (id)
);
create table o_olatresource (
resource_id int8 not null,
version int4 not null,
creationdate timestamp,
resname varchar(50) not null,
resid int8 not null,
primary key (resource_id),
unique (resname, resid)
);
create table o_bs_namedgroup (
id int8 not null,
version int4 not null,
creationdate timestamp,
secgroup_id int8 not null,
groupname varchar(16),
primary key (id),
unique (groupname)
);
create table o_catentry (
id int8 not null,
version int4 not null,
creationdate timestamp,
name varchar(110) not null,
description text,
externalurl varchar(255),
fk_repoentry int8,
fk_ownergroup int8 unique,
type int4 not null,
parent_id int8,
primary key (id)
);
create table o_note (
note_id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
owner_id int8,
resourcetypename varchar(50) not null,
resourcetypeid int8 not null,
sub_type varchar(50),
notetitle varchar(255),
notetext text,
primary key (note_id)
);
create table o_gp_bgcontext (
groupcontext_id int8 not null,
version int4 not null,
creationdate timestamp,
name varchar(255) not null,
descr text,
grouptype varchar(15) not null,
ownergroup_fk int8 unique,
defaultcontext bool not null,
primary key (groupcontext_id)
);
create table o_references (
reference_id int8 not null,
version int4 not null,
creationdate timestamp,
source_id int8 not null,
target_id int8 not null,
userdata varchar(64),
primary key (reference_id)
);
create table o_repositorymetadata (
metadataelement_id int8 not null,
version int4 not null,
creationdate timestamp,
name varchar(255) not null,
value text not null,
fk_repositoryentry int8 not null,
primary key (fk_repositoryentry, metadataelement_id)
);
create table o_user (
user_id int8 not null,
version int4 not null,
creationdate timestamp,
language varchar(30),
fontsize varchar(10),
notification_interval varchar(16),

srosse
committed
receiverealmail varchar(16),
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
presencemessagespublic bool,
informsessiontimeout bool not null,
primary key (user_id)
);
create table o_userproperty (
fk_user_id int8 not null,
propname varchar(255) not null,
propvalue varchar(255),
primary key (fk_user_id, propname)
);
create table o_gp_bgcontextresource_rel (
groupcontextresource_id int8 not null,
version int4 not null,
creationdate timestamp,
oresource_id int8 not null,
groupcontext_fk int8 not null,
primary key (groupcontextresource_id)
);
create table o_message (
message_id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
title varchar(100),
body text,
parent_id int8,
topthread_id int8,
creator_id int8 not null,
modifier_id int8,
forum_fk int8,
statuscode int4,
numofwords int4,
numofcharacters int4,
primary key (message_id)
);
create table o_gp_bgtoarea_rel (
bgtoarea_id int8 not null,
version int4 not null,
creationdate timestamp,
group_fk int8 not null,
area_fk int8 not null,
primary key (bgtoarea_id),
unique (group_fk, area_fk)
);
create table o_noti_sub (
publisher_id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
fk_publisher int8 not null,
fk_identity int8 not null,
latestemailed timestamp,
primary key (publisher_id),
unique (fk_publisher, fk_identity)
);
create table o_qtiresult (
result_id int8 not null,
version int4 not null,
lastmodified timestamp not null,
creationdate timestamp,
itemident varchar(255) not null,
answer text,
duration int8,
score float(24),
tstamp timestamp not null,
ip varchar(255),
resultset_fk int8,
primary key (result_id)
);
create table o_bs_policy (
id int8 not null,
version int4 not null,
creationdate timestamp,
oresource_id int8 not null,
group_id int8 not null,
permission varchar(16) not null,
apply_from timestamp default null,
apply_to timestamp default null,
primary key (id),
unique (oresource_id, group_id, permission)
);
create table o_gp_bgarea (
area_id int8 not null,
version int4 not null,
creationdate timestamp,
name varchar(255) not null,
descr text,
groupcontext_fk int8,
fk_resource int8 default null,
primary key (area_id)
);
create table o_repositoryentry (
repositoryentry_id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
lastusage timestamp,
softkey varchar(30) not null unique,
displayname varchar(110) not null,
resourcename varchar(100) not null,
fk_olatresource int8 unique,
fk_ownergroup int8 unique,

srosse
committed
fk_tutorgroup int8,
fk_participantgroup int8,
description text,
initialauthor varchar(128) not null,
accesscode int4 not null,

srosse
committed
membersonly boolean default false,
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
statuscode int4,
canlaunch bool not null,
candownload bool not null,
cancopy bool not null,
canreference bool not null,
launchcounter int8 not null,
downloadcounter int8 not null,
primary key (repositoryentry_id)
);
create table o_bookmark (
bookmark_id int8 not null,
version int4 not null,
creationdate timestamp,
owner_id int8 not null,
title varchar(255) not null,
description text,
detaildata varchar(255),
displayrestype varchar(50) not null,
olatrestype varchar(50) not null,
olatreskey int8,
primary key (bookmark_id)
);
create table o_bs_membership (
id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
secgroup_id int8 not null,
identity_id int8 not null,
primary key (id),
unique (secgroup_id, identity_id)
);
create table o_plock (
plock_id int8 not null,
version int4 not null,
creationdate timestamp,
asset varchar(255) not null unique,
primary key (plock_id)
);
create table hibernate_unique_key (
next_hi integer
);
create table o_lifecycle (
id bigint not null,
version int4 not null,
creationdate timestamp,
persistenttypename varchar(50) not null,
persistentref bigint not null,
action varchar(50) not null,
lctimestamp timestamp,
uservalue text,
primary key (id)
);
create table oc_lock (
lock_id int8 not null,
version int4 not null,
creationdate timestamp,
identity_fk int8 not null,
asset varchar(120) not null unique,
primary key (lock_id)
);
create index ocl_asset_idx on oc_lock (asset);
alter table oc_lock add constraint FK9E30F4B66115906D foreign key (identity_fk) references o_bs_identity;
create table o_readmessage (
id int8 not null,
version int4 not null,
creationdate timestamp,
identity_id int8 not null,
forum_id int8 not null,
message_id int8 not null,
primary key (id));
create table o_loggingtable (
log_id int8 not null,
creationdate timestamp,
sourceclass varchar(255),
sessionid varchar(255) not null,
user_id int8,
username varchar(255),
userproperty1 varchar(255),
userproperty2 varchar(255),
userproperty3 varchar(255),
userproperty4 varchar(255),
userproperty5 varchar(255),
userproperty6 varchar(255),
userproperty7 varchar(255),
userproperty8 varchar(255),
userproperty9 varchar(255),
userproperty10 varchar(255),
userproperty11 varchar(255),
userproperty12 varchar(255),
actioncrudtype varchar(1) not null,
actionverb varchar(16) not null,
actionobject varchar(32) not null,
simpleduration int8 not null,
resourceadminaction bool not null,
businesspath varchar(2048),
greatgrandparentrestype varchar(32),
greatgrandparentresid varchar(64),
greatgrandparentresname varchar(255),
grandparentrestype varchar(32),
grandparentresid varchar(64),
grandparentresname varchar(255),
parentrestype varchar(32),
parentresid varchar(64),
parentresname varchar(255),
targetrestype varchar(32),
targetresid varchar(64),
targetresname varchar(255),
primary key (log_id)
);
create table o_checklist (
checklist_id int8 not null,
version int4 not null,
lastmodified timestamp not null,
title varchar(255) not null,
description text,
primary key (checklist_id)
);
create table o_checkpoint (
checkpoint_id int8 not null,
version int4 not null,
lastmodified timestamp not null,
title varchar(255) not null,
description text,
modestring varchar(64) not null,
checklist_fk int8,
primary key (checkpoint_id)
);
alter table o_checkpoint add constraint FK9E30F4B661159ZZZ foreign key (checklist_fk) references o_checklist;
create table o_checkpoint_results (
checkpoint_result_id bigint not null,
version int4 not null,
lastmodified timestamp not null,
result bool not null,
checkpoint_fk int8,
identity_fk int8,
primary key (checkpoint_result_id)
);
create table o_projectbroker (
projectbroker_id int8 not null,
version int4 not null,
creationdate timestamp,
primary key (projectbroker_id)
);
create table o_projectbroker_project (
project_id int8 not null,
version int4 not null,
creationdate timestamp,
title varchar(100),
description text,
state varchar(20),
maxMembers integer,
attachmentFileName varchar(100),
mailNotificationEnabled bool not null,
projectgroup_fk int8 not null,
projectbroker_fk int8 not null,
candidategroup_fk int8 not null,
primary key (project_id)
);
create table o_projectbroker_customfields (
fk_project_id int8 not null,
propname varchar(255) not null,
propvalue varchar(255),
primary key (fk_project_id, propname)
);
create table o_usercomment (
comment_id int8 not null,
version int4 not null,
creationdate timestamp,
resname varchar(50) not null,
resid int8 not null,
ressubpath varchar(2048),
creator_id int8 not null,
commenttext text,
parent_key int8,
primary key (comment_id)
);
create table o_userrating (
rating_id int8 not null,
version int4 not null,
creationdate timestamp,
lastmodified timestamp,
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
resname varchar(50) not null,
resid int8 not null,
ressubpath varchar(2048),
creator_id int8 not null,
rating int4 not null,
primary key (rating_id)
);
create table o_info_message (
info_id int8 NOT NULL,
version int4 NOT NULL,
creationdate timestamp,
modificationdate timestamp,
title varchar(2048),
message varchar(2048),
resname varchar(50) NOT NULL,
resid int8 NOT NULL,
ressubpath varchar(2048),
businesspath varchar(2048),
fk_author_id int8,
fk_modifier_id int8,
primary key (info_id)
) ;
-- eportfolio arteafcts
create table o_ep_artefact (
artefact_id int8 not null,
artefact_type varchar(32) not null,
version int4 not null,
creationdate timestamp,
collection_date timestamp,
title varchar(512),
description varchar(4000),

srosse
committed
signature int4 default 0,
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
businesspath varchar(2048),
fulltextcontent text,
reflexion text,
source varchar(2048),
add_prop1 varchar(2048),
add_prop2 varchar(2048),
add_prop3 varchar(2048),
fk_struct_el_id int8,
fk_artefact_auth_id int8 not null,
primary key (artefact_id)
);
-- eportfolio collect restrictions
create table o_ep_collect_restriction (
collect_id int8 not null,
version int4 not null,
creationdate timestamp,
artefact_type varchar(256),
amount int4 not null default -1,
restriction varchar(32),
pos int4 not null default 0,
fk_struct_el_id int8,
primary key (collect_id)
);
-- eportfolio structure element
create table o_ep_struct_el (
structure_id int8 not null,
structure_type varchar(32) not null,
version int4 not null,
creationdate timestamp,
returndate timestamp default null,
copydate timestamp default null,
lastsyncheddate timestamp default null,
deadline timestamp default null,
title varchar(512),
description varchar(2048),
struct_el_source int8,
target_resname varchar(50),
target_resid int8,
target_ressubpath varchar(2048),
target_businesspath varchar(2048),
style varchar(128),
status varchar(32),
viewmode varchar(32),
fk_struct_root_id int8,
fk_struct_root_map_id int8,
fk_map_source_id int8,
fk_ownergroup int8,
fk_olatresource int8 not null,
primary key (structure_id)
);
-- eportfolio structure to structure link
create table o_ep_struct_struct_link (
link_id int8 not null,
version int4 not null,
creationdate timestamp,
pos int4 not null default 0,
fk_struct_parent_id int8 not null,
fk_struct_child_id int8 not null,
primary key (link_id)
);
-- eportfolio structure to artefact link
create table o_ep_struct_artefact_link (
link_id int8 not null,
version int4 not null,
creationdate timestamp,
pos int4 not null default 0,
reflexion text,
fk_auth_id int8,
fk_struct_id int8 not null,
fk_artefact_id int8 not null,
primary key (link_id)
);
-- invitation
create table o_bs_invitation (
id int8 not null,
version int4 not null,
creationdate timestamp,
token varchar(64) not null,
first_name varchar(64),
last_name varchar(64),
mail varchar(128),
fk_secgroup int8,
primary key (id)
);
-- tagging
create table o_tag (
tag_id int8 not null,
version int4 not null,
creationdate timestamp,
tag varchar(128) not null,
resname varchar(50) not null,
resid int8 not null,
ressubpath varchar(2048),
businesspath varchar(2048),
fk_author_id int8 not null,
primary key (tag_id)
);

srosse
committed
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
create table o_mail (
mail_id int8 not null,
meta_mail_id varchar(64),
creationdate timestamp,
lastmodified timestamp,
resname varchar(50),
resid int8,
ressubpath varchar(2048),
businesspath varchar(2048),
subject varchar(512),
body text,
fk_from_id int8,
primary key (mail_id)
);
-- mail recipient
create table o_mail_to_recipient (
pos int4 NOT NULL default 0,
fk_mail_id int8,
fk_recipient_id int8
);
create table o_mail_recipient (
recipient_id int8 NOT NULL,
recipientvisible boolean,
deleted boolean,
mailread boolean,
mailmarked boolean,
email varchar(255),
recipientgroup varchar(255),
creationdate timestamp,
fk_recipient_id int8,
primary key (recipient_id)
);
-- mail attachments
create table o_mail_attachment (
attachment_id int8 NOT NULL,
creationdate timestamp,
datas bytea,
datas_size int8,
datas_name varchar(255),
mimetype varchar(255),
fk_att_mail_id int8,
primary key (attachment_id)
);
-- access control
create table o_ac_offer (
offer_id int8 NOT NULL,
creationdate timestamp,
lastmodified timestamp,
is_valid boolean default true,
validfrom timestamp,
validto timestamp,
version int4 not null,
resourceid int8,
resourcetypename varchar(255),
resourcedisplayname varchar(255),
token varchar(255),
price_amount DECIMAL,
price_currency_code VARCHAR(3),
offer_desc VARCHAR(2000),
fk_resource_id int8,
primary key (offer_id)
);
create table o_ac_method (
method_id int8 NOT NULL,
access_method varchar(32),
version int4 not null,
creationdate timestamp,
lastmodified timestamp,
is_valid boolean default true,
is_enabled boolean default true,
validfrom timestamp,
validto timestamp,
primary key (method_id)
);
create table o_ac_offer_access (
offer_method_id int8 NOT NULL,
version int4 not null,
creationdate timestamp,
is_valid boolean default true,
validfrom timestamp,
validto timestamp,
fk_offer_id int8,
fk_method_id int8,
primary key (offer_method_id)
);
-- access cart
create table o_ac_order (
order_id int8 NOT NULL,
version int4 not null,
creationdate timestamp,
lastmodified timestamp,
is_valid boolean default true,
total_lines_amount DECIMAL,
total_lines_currency_code VARCHAR(3),
total_amount DECIMAL,
total_currency_code VARCHAR(3),
discount_amount DECIMAL,
discount_currency_code VARCHAR(3),
order_status VARCHAR(32) default 'NEW',
fk_delivery_id int8,
primary key (order_id)
);
create table o_ac_order_part (
order_part_id int8 NOT NULL,
version int4 not null,
pos int4,
creationdate timestamp,
total_lines_amount DECIMAL,
total_lines_currency_code VARCHAR(3),
total_amount DECIMAL,
total_currency_code VARCHAR(3),
fk_order_id int8,
primary key (order_part_id)
);
create table o_ac_order_line (
order_item_id int8 NOT NULL,
version int4 not null,
pos int4,
creationdate timestamp,
unit_price_amount DECIMAL,
unit_price_currency_code VARCHAR(3),
total_amount DECIMAL,
total_currency_code VARCHAR(3),
fk_order_part_id int8,
fk_offer_id int8,
primary key (order_item_id)
);
create table o_ac_transaction (
transaction_id int8 NOT NULL,
version int4 not null,
creationdate timestamp,
trx_status VARCHAR(32) default 'NEW',
amount_amount DECIMAL,
amount_currency_code VARCHAR(3),
fk_order_part_id int8,
fk_order_id int8,
fk_method_id int8,
primary key (transaction_id)
);
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
create table o_stat_lastupdated (
lastupdated timestamp not null
);
-- important: initialize with old date!
insert into o_stat_lastupdated values(date('1999-01-01'));
--insert into o_stat_dayofweek (businesspath,resid,day,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,dayofweek(creationdate) day,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,day;
create table o_stat_dayofweek (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
day int4 not null,
value int4 not null,
primary key (id)
);
create index statdow_resid_idx on o_stat_dayofweek (resid);
--insert into o_stat_hourofday (businesspath,resid,hour,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,hour(creationdate) hour,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,hour;
create table o_stat_hourofday (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
hour int4 not null,
value int4 not null,
primary key (id)
);
create index stathod_resid_idx on o_stat_hourofday (resid);
--insert into o_stat_weekly (businesspath,resid,week,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,concat(year(creationdate),'-',week(creationdate)) week,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,week;
create table o_stat_weekly (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
week varchar(7) not null,
value int4 not null,
primary key (id)
);
create index statwee_resid_idx on o_stat_weekly (resid);
--insert into o_stat_daily (businesspath,resid,day,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,date(creationdate) day,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,day;
create table o_stat_daily (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
day timestamp not null,
value int4 not null,
primary key (id)
);
create index statday_resid_idx on o_stat_daily (resid);
--insert into o_stat_homeorg (businesspath,resid,homeorg,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,userproperty2 homeorg,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,homeorg;
create table o_stat_homeorg (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
homeorg varchar(255) not null,
value int4 not null,
primary key (id)
);
create index stathor_resid_idx on o_stat_homeorg (resid);
--insert into o_stat_orgtype (businesspath,resid,orgtype,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,userproperty4 orgtype,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,orgtype;
create table o_stat_orgtype (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
orgtype varchar(255),
value int4 not null,
primary key (id)
);
create index statorg_resid_idx on o_stat_orgtype (resid);
--insert into o_stat_studylevel (businesspath,resid,studylevel,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,userproperty3 studylevel,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,studylevel;
create table o_stat_studylevel (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
studylevel varchar(255) not null,
value int4 not null,
primary key (id)
);
create index statstl_resid_idx on o_stat_studylevel (resid);
--insert into o_stat_studybranch3 (businesspath,resid,studybranch3,value) select businesspath,substr(businesspath,locate(':',businesspath)+1,locate(']',businesspath)-locate(':',businesspath)-1) resid,userproperty10 studybranch3,count(*) cnt from o_loggingtable where actionverb='launch' and actionobject='node' group by businesspath,studybranch3;
create table o_stat_studybranch3 (
id bigserial,
businesspath varchar(2048) not null,
resid int8 not null,
studybranch3 varchar(255),
value int4 not null,
primary key (id)
);
create index statstb_resid_idx on o_stat_studybranch3 (resid);
create table o_mark (
mark_id int8 not null,
version int4 not null,
creationdate timestamp,
resname varchar(50) not null,
resid int8 not null,
ressubpath varchar(2048),
businesspath varchar(2048),
creator_id int8 not null,
primary key (mark_id)
);
-- efficiency statments
create table o_as_eff_statement (
id int8 not null,
version int4 not null,
lastmodified timestamp,
creationdate timestamp,
passed boolean,
score float4,
total_nodes int4,
attempted_nodes int4,
passed_nodes int4,
course_title varchar(255),
course_short_title varchar(128),
course_repo_key int8,
statement_xml text,
fk_identity int8,
fk_resource_id int8,
unique(fk_identity, fk_resource_id),
primary key (id)
);
-- user to course informations (was property initial and recent launch dates)
create table o_as_user_course_infos (
version int4 not null,
creationdate timestamp,
lastmodified timestamp,
initiallaunchdate timestamp,
recentlaunchdate timestamp,
timespend int8,
fk_identity int8,
fk_resource_id int8,
unique(fk_identity, fk_resource_id),
primary key (id)
);
-- user view
create view o_bs_identity_short_v as (
select
ident.id as id_id,
ident.name as id_name,
ident.lastlogin as id_lastlogin,
ident.status as id_status,
us.user_id as us_id,
p_firstname.propvalue as first_name,
p_lastname.propvalue as last_name,
p_email.propvalue as email
from o_bs_identity as ident
inner join o_user as us on (ident.fk_user_id = us.user_id)
left join o_userproperty as p_firstname on (us.user_id = p_firstname.fk_user_id and p_firstname.propName = 'firstName')
left join o_userproperty as p_lastname on (us.user_id = p_lastname.fk_user_id and p_lastname.propName = 'lastName')
left join o_userproperty as p_email on (us.user_id = p_email.fk_user_id and p_email.propName = 'email')
);
-- assessment results
-- help view
create view o_gp_contextresource_2_group_v as (
select
cg_bg2resource.groupcontextresource_id as groupcontextresource_id,
cg_bgcontext.groupcontext_id as groupcontext_id,
cg_bgroup.group_id as group_id,
cg_bg2resource.oresource_id as oresource_id,
cg_bgcontext.grouptype as grouptype,
cg_bgcontext.defaultcontext as defaultcontext,
cg_bgroup.groupname as groupname,
cg_bgroup.fk_ownergroup as fk_ownergroup,
cg_bgroup.fk_partipiciantgroup as fk_partipiciantgroup,
cg_bgroup.fk_waitinggroup as fk_waitinggroup
from o_gp_bgcontextresource_rel as cg_bg2resource
inner join o_gp_bgcontext as cg_bgcontext on (cg_bg2resource.groupcontext_fk = cg_bgcontext.groupcontext_id)
inner join o_gp_business as cg_bgroup on (cg_bg2resource.groupcontext_fk = cg_bgroup.groupcontext_fk)
);
-- eportfolio views
create or replace view o_ep_notifications_struct_v as (
select
struct.structure_id as struct_id,
struct.structure_type as struct_type,
struct.title as struct_title,
struct.fk_struct_root_id as struct_root_id,
struct.fk_struct_root_map_id as struct_root_map_id,
(case when struct.structure_type = 'page' then struct.structure_id else parent_struct.structure_id end) as page_key,
struct_link.creationdate as creation_date