Skip to content

Commit

Permalink
BZ-1049238 - Optimize DDL scripts for production use (indexes, ...)
Browse files Browse the repository at this point in the history
  • Loading branch information
krisv committed Feb 20, 2015
1 parent e90d568 commit c538b50
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions jbpm-installer/db/ddl-scripts/db2/db2-jbpm-schema.sql
Expand Up @@ -643,7 +643,6 @@
create index IDX_NotBAs_Task ON Notification_BAs(task_id);
create index IDX_NotRec_Entity ON Notification_Recipients(entity_id);
create index IDX_NotRec_Task ON Notification_Recipients(task_id);
create index IDX_NotEmail_Header ON Notification_email_header(emailHeaders_id);
create index IDX_NotEmail_Not ON Notification_email_header(Notification_id);
create index IDX_PAsBAs_Entity ON PeopleAssignments_BAs(entity_id);
create index IDX_PAsBAs_Task ON PeopleAssignments_BAs(task_id);
Expand Down Expand Up @@ -702,4 +701,4 @@
create index IDX_PInstLog_pName on ProcessInstanceLog(processName);
create index IDX_PInstLog_pVersion on ProcessInstanceLog(processVersion);
create index IDX_PInstLog_start_date on ProcessInstanceLog(start_date);
create index IDX_PInstLog_status on ProcessInstanceLog(status);
create index IDX_PInstLog_status on ProcessInstanceLog(status);
3 changes: 1 addition & 2 deletions jbpm-installer/db/ddl-scripts/oracle/oracle-jbpm-schema.sql
Expand Up @@ -698,7 +698,6 @@
create index IDX_NotBAs_Task ON Notification_BAs(task_id);
create index IDX_NotRec_Entity ON Notification_Recipients(entity_id);
create index IDX_NotRec_Task ON Notification_Recipients(task_id);
create index IDX_NotEmail_Header ON Notification_email_header(emailHeaders_id);
create index IDX_NotEmail_Not ON Notification_email_header(Notification_id);
create index IDX_PAsBAs_Entity ON PeopleAssignments_BAs(entity_id);
create index IDX_PAsBAs_Task ON PeopleAssignments_BAs(task_id);
Expand Down Expand Up @@ -757,4 +756,4 @@
create index IDX_PInstLog_pName on ProcessInstanceLog(processName);
create index IDX_PInstLog_pVersion on ProcessInstanceLog(processVersion);
create index IDX_PInstLog_start_date on ProcessInstanceLog(start_date);
create index IDX_PInstLog_status on ProcessInstanceLog(status);
create index IDX_PInstLog_status on ProcessInstanceLog(status);

0 comments on commit c538b50

Please sign in to comment.