Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
minerva
core
Commits
ddddc03c
Commit
ddddc03c
authored
Jul 31, 2018
by
Piotr Gawron
Browse files
date in changelog fixed + missing migration script
parent
f19b6f80
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
ddddc03c
...
...
@@ -8,7 +8,7 @@ minerva (12.0.2) stable; urgency=medium
line characters when necessary
* Performance: tomcat inside docker image by default can use 3G of memory
-- Piotr Gawron <piotr.gawron@uni.lu> Tue, 3
0
Jul 2018 13:00:00 +0200
-- Piotr Gawron <piotr.gawron@uni.lu> Tue, 3
1
Jul 2018 13:00:00 +0200
minerva (12.0.1) stable; urgency=medium
* Bug fix: setting default zoom level on submap
...
...
persist/src/db/12.0.2/fix_db_20180731.sql
0 → 100644
View file @
ddddc03c
-- issue #461 - duplicates in reaction ids resolved
update
reaction_table
r
set
idreaction
=
concat
(
r
.
idreaction
,
'_'
,
r
.
iddb
)
from
(
select
idreaction
,
model_iddb
from
reaction_table
group
by
idreaction
,
model_iddb
having
count
(
*
)
>
1
)
t
where
r
.
idreaction
=
t
.
idreaction
and
r
.
model_iddb
=
t
.
model_iddb
;
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment