Skip to content
Snippets Groups Projects
Commit 1036e76e authored by srosse's avatar srosse
Browse files

OO-4971: missing InnoDB statements

parent a22c236d
No related branches found
No related tags found
No related merge requests found
...@@ -89,6 +89,7 @@ create table o_org_role_to_right ( ...@@ -89,6 +89,7 @@ create table o_org_role_to_right (
fk_organisation bigint not null, fk_organisation bigint not null,
primary key (id) primary key (id)
); );
alter table o_org_role_to_right ENGINE = InnoDB;
alter table o_org_role_to_right add constraint org_role_to_right_to_organisation_idx foreign key (fk_organisation) references o_org_organisation (id); alter table o_org_role_to_right add constraint org_role_to_right_to_organisation_idx foreign key (fk_organisation) references o_org_organisation (id);
create index idx_org_role_to_right_to_organisation_idx on o_org_role_to_right (fk_organisation); create index idx_org_role_to_right_to_organisation_idx on o_org_role_to_right (fk_organisation);
...@@ -113,6 +114,7 @@ create table o_contact_tracing_location ( ...@@ -113,6 +114,7 @@ create table o_contact_tracing_location (
l_guests boolean not null, l_guests boolean not null,
primary key (id) primary key (id)
); );
alter table o_contact_tracing_location ENGINE = InnoDB;
create table o_contact_tracing_entry ( create table o_contact_tracing_entry (
id bigint not null auto_increment, id bigint not null auto_increment,
...@@ -136,3 +138,4 @@ create table o_contact_tracing_entry ( ...@@ -136,3 +138,4 @@ create table o_contact_tracing_entry (
fk_location int8 not null, fk_location int8 not null,
primary key (id) primary key (id)
); );
alter table o_contact_tracing_entry ENGINE = InnoDB;
...@@ -3548,6 +3548,7 @@ alter table o_lic_license ENGINE = InnoDB; ...@@ -3548,6 +3548,7 @@ alter table o_lic_license ENGINE = InnoDB;
alter table o_org_organisation_type ENGINE = InnoDB; alter table o_org_organisation_type ENGINE = InnoDB;
alter table o_org_organisation ENGINE = InnoDB; alter table o_org_organisation ENGINE = InnoDB;
alter table o_org_type_to_type ENGINE = InnoDB; alter table o_org_type_to_type ENGINE = InnoDB;
alter table o_org_role_to_right ENGINE = InnoDB;
alter table o_re_to_organisation ENGINE = InnoDB; alter table o_re_to_organisation ENGINE = InnoDB;
alter table o_cur_element_type ENGINE = InnoDB; alter table o_cur_element_type ENGINE = InnoDB;
alter table o_cur_curriculum ENGINE = InnoDB; alter table o_cur_curriculum ENGINE = InnoDB;
...@@ -3566,6 +3567,8 @@ alter table o_ap_organizer ENGINE = InnoDB; ...@@ -3566,6 +3567,8 @@ alter table o_ap_organizer ENGINE = InnoDB;
alter table o_ap_topic_to_group ENGINE = InnoDB; alter table o_ap_topic_to_group ENGINE = InnoDB;
alter table o_ap_appointment ENGINE = InnoDB; alter table o_ap_appointment ENGINE = InnoDB;
alter table o_ap_participation ENGINE = InnoDB; alter table o_ap_participation ENGINE = InnoDB;
alter table o_contact_tracing_location ENGINE = InnoDB;
alter table o_contact_tracing_entry ENGINE = InnoDB;
-- rating -- rating
alter table o_userrating add constraint FKF26C8375236F20X foreign key (creator_id) references o_bs_identity (id); alter table o_userrating add constraint FKF26C8375236F20X foreign key (creator_id) references o_bs_identity (id);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment