Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
-- Dropping ix_datasetstatus_experimentannotations [ExperimentAnnotationsId] because it overlaps with uq_datasetstatus_experimentannotations [ExperimentAnnotationsId]
DROP INDEX panoramapublic.ix_datasetstatus_experimentannotations;
-- Dropping ix_experimentannotations_shorturl [ShortUrl] because it overlaps with uq_experimentannotations_shorturl [ShortUrl]
DROP INDEX panoramapublic.ix_experimentannotations_shorturl;
-- Dropping ix_speclibinfo_experimentannotations [experimentAnnotationsId] because it overlaps with uq_speclibinfo [experimentAnnotationsId, librarytype, name, filenamehint, skylinelibraryid, revision]
DROP INDEX panoramapublic.ix_speclibinfo_experimentannotations;
-- Dropping ix_catalogentry_shorturl [ShortUrl] because it overlaps with uq_catalogentry_shorturl [ShortUrl]
DROP INDEX panoramapublic.ix_catalogentry_shorturl;
-- Dropping ix_experimentstructuralmodinfo_experimentannotationsid [ExperimentAnnotationsId] because it overlaps with uq_experimentstructuralmodinfo [ExperimentAnnotationsId, ModId]
DROP INDEX panoramapublic.ix_experimentstructuralmodinfo_experimentannotationsid;
-- Dropping ix_journalexperiment_journal [JournalId] because it overlaps with uq_journalexperiment [JournalId, ExperimentAnnotationsId]
DROP INDEX panoramapublic.ix_journalexperiment_journal;
-- Dropping ix_experimentisotopemodinfo_experimentannotationsid [ExperimentAnnotationsId] because it overlaps with uq_experimentisotopemodinfo [ExperimentAnnotationsId, ModId]
DROP INDEX panoramapublic.ix_experimentisotopemodinfo_experimentannotationsid;
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 25.004;
return 25.005;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
-- Dropping testrunid_unqiue [id] because it overlaps with pk_testruns [id]
ALTER TABLE testresults.testruns DROP CONSTRAINT testrunid_unqiue;
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 13.40;
return 13.401;
}

@Override
Expand Down
Loading