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,10 @@
-- Dropping idx_instrumentusagepayment_instrumentscheduleid [instrumentScheduleId] because it overlaps with pk_instrumentusagepayment [instrumentScheduleId, paymentMethod]
DROP INDEX targetedms.idx_instrumentusagepayment_instrumentscheduleid;
-- Dropping ix_qcannotationtype_container [Container] because it overlaps with uq_qcannotationtype_containername [Container, Name]
DROP INDEX targetedms.ix_qcannotationtype_container;
-- Dropping ix_precursor_id [Id] because it overlaps with pk_precursor_id [Id]
DROP INDEX targetedms.ix_precursor_id;
-- Dropping ix_qcmetricexclusion_replicateid [ReplicateId] because it overlaps with uq_qcmetricexclusion_replicate_metric [ReplicateId, MetricId]
DROP INDEX targetedms.ix_qcmetricexclusion_replicateid;
-- Dropping ix_irtpeptide_irtscaleid [iRTScaleId] because it overlaps with uq_irtpeptide_sequenceandscale [iRTScaleId, ModifiedSequence]
DROP INDEX targetedms.ix_irtpeptide_irtscaleid;
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
-- When reparenting the QCEmailNotifications table from PanoramaPremium schema to targetedms, an attempt was made to
-- drop this index, but the attempt failed because it targeted the old schema. This index is redundant with
-- IX_qcEmailNotifications_Container.
DROP INDEX IF EXISTS targetedms.IX_PanoramaPremium_qcEmailNotifications_Container;
2 changes: 1 addition & 1 deletion src/org/labkey/targetedms/TargetedMSModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ public String getName()
@Override
public Double getSchemaVersion()
{
return 26.004;
return 26.006;
}

@Override
Expand Down
Loading