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 core/module.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Name: Core
ModuleClass: org.labkey.core.CoreModule
SchemaVersion: 26.000
SchemaVersion: 26.001
Label: Administration and Essential Services
Description: The Core module provides central services such as login, \
security, administration, folder management, user management, \
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- Extraction of parent EntityIds from data class LSIDs has been fixed, so re-run population of the ParentType column.
-- Keep the invocation in core-25.008-25.009.sql since core-25.009-25.010.sql relies on ParentType being populated.
SELECT core.executeJavaUpgradeCode('populateAttachmentParentTypeColumn');
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
-- Extraction of parent EntityIds from data class LSIDs has been fixed, so re-run population of the ParentType column.
-- Keep the invocation in core-25.008-25.009.sql since core-25.009-25.010.sql relies on ParentType being populated.
EXEC core.executeJavaUpgradeCode 'populateAttachmentParentTypeColumn';
1 change: 1 addition & 0 deletions core/src/org/labkey/core/CoreUpgradeCode.java
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ public static void migrateAllowedExternalConnectionHosts(ModuleContext context)

/**
* Called from core-25.008-25.009.sql
* Called from core-26.000-26.001.sql
*/
@SuppressWarnings("unused")
@DeferredUpgrade
Expand Down