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
2 changes: 1 addition & 1 deletion peptideInventory/module.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Name: PeptideInventory
SchemaVersion: 26.000
SchemaVersion: 26.001
ManageVersion: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
-- Converting uq_lotassignment [peptideId, container, lotNumber] from unique to non-unique index because pk_lotassignment [peptideId, container] overlaps it with a smaller column set
ALTER TABLE peptideinventory.lotAssignment DROP CONSTRAINT uq_lotassignment;
CREATE INDEX ix_lotassignment ON peptideinventory.lotAssignment(peptideId, container, lotNumber);
-- Converting uq_rcpoolassignment [peptideId, container, rcPoolId] from unique to non-unique index because pk_rcpoolassignment [peptideId, container] overlaps it with a smaller column set
ALTER TABLE peptideinventory.rcPoolAssignment DROP CONSTRAINT uq_rcpoolassignment;
CREATE INDEX ix_rcpoolassignment ON peptideinventory.rcPoolAssignment(peptideId, container, rcPoolId);
Loading