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 OConnor/module.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Name: OConnor
SchemaVersion: 26.001
SchemaVersion: 26.002
RequiredServerVersion: 16.30
ManageVersion: true
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- Dropping key [key] because it overlaps with inventorytemp_pkey [key]
DROP INDEX oconnor.key;
-- Dropping experiment_db_experiment_number_key [experiment_number] because it overlaps with pk_experiment_db [experiment_number]
DROP INDEX oconnor.experiment_db_experiment_number_key;
-- Dropping unique index because pk_experiment_db [experiment_number] overlaps it with a smaller column set. Not bothering
-- to convert this unique index to a non-unique index because it has 11 columns, which is absurd.
DROP INDEX oconnor.experiment_db_experiment_number_created_createdby_description_t;
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
-- Dropping idx_animalanalysis_animal [AnimalId] because it overlaps with uq_animalanalysis [AnimalId, RunId]
DROP INDEX genotyping.idx_animalanalysis_animal;
-- Dropping idx_animal_container [Container] because it overlaps with uq_animal_labanimalid [Container, LabAnimalId]
DROP INDEX genotyping.idx_animal_container;
-- Converting unique_runs [RowId, Container, MetaDataId] from unique to non-unique index because pk_runs [RowId] overlaps it with a smaller column set
ALTER TABLE genotyping.Runs DROP CONSTRAINT unique_runs;
CREATE INDEX index_runs ON genotyping.Runs(RowId, Container, MetaDataId);
2 changes: 1 addition & 1 deletion genotyping/src/org/labkey/genotyping/GenotypingModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 26.000;
return 26.001;
}

@Override
Expand Down
Loading