Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
OLAT CI-CD Testing Project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Monitor
Service Desk
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Lars Oliver Dam
OLAT CI-CD Testing Project
Commits
1036e76e
Commit
1036e76e
authored
4 years ago
by
srosse
Browse files
Options
Downloads
Patches
Plain Diff
OO-4971: missing InnoDB statements
parent
a22c236d
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/main/resources/database/mysql/alter_15_2_x_to_15_3_0.sql
+3
-0
3 additions, 0 deletions
src/main/resources/database/mysql/alter_15_2_x_to_15_3_0.sql
src/main/resources/database/mysql/setupDatabase.sql
+3
-0
3 additions, 0 deletions
src/main/resources/database/mysql/setupDatabase.sql
with
6 additions
and
0 deletions
src/main/resources/database/mysql/alter_15_2_x_to_15_3_0.sql
+
3
−
0
View file @
1036e76e
...
@@ -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
;
This diff is collapsed.
Click to expand it.
src/main/resources/database/mysql/setupDatabase.sql
+
3
−
0
View file @
1036e76e
...
@@ -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
);
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment