From cde29c948e98cdaf91d203f6b5054707ad942674 Mon Sep 17 00:00:00 2001 From: Adam Rauch Date: Tue, 4 Nov 2025 10:41:36 -0800 Subject: [PATCH] Rework sequence querying & updating (#949) --- protein/src/org/labkey/protein/ProteinModule.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/protein/src/org/labkey/protein/ProteinModule.java b/protein/src/org/labkey/protein/ProteinModule.java index 310c61ca9..7840bbbdb 100644 --- a/protein/src/org/labkey/protein/ProteinModule.java +++ b/protein/src/org/labkey/protein/ProteinModule.java @@ -153,7 +153,7 @@ public void beforeSchema() } @Override - public void afterSchema(DatabaseMigrationConfiguration configuration, DbSchema sourceSchema, DbSchema targetSchema, Map> sequenceMap) + public void afterSchema(DatabaseMigrationConfiguration configuration, DbSchema sourceSchema, DbSchema targetSchema) { new SqlExecutor(getSchema()).execute("ALTER TABLE prot.Organisms ADD CONSTRAINT FK_ProtOrganisms_ProtIdentifiers FOREIGN KEY (IdentId) REFERENCES prot.Identifiers (IdentId)"); GoLoader.createGoIndexes();