diff --git a/api/src/org/labkey/api/module/DefaultModule.java b/api/src/org/labkey/api/module/DefaultModule.java index 91e5c5ed646..1ef43e238ca 100644 --- a/api/src/org/labkey/api/module/DefaultModule.java +++ b/api/src/org/labkey/api/module/DefaultModule.java @@ -528,9 +528,9 @@ public Collection getProvisionedSchemaNames() return Collections.emptySet(); } - protected static final Set ALL_DATABASES = Set.of(SupportedDatabase.mssql, SupportedDatabase.pgsql); + protected static final Set ONLY_POSTGRESQL = Set.of(SupportedDatabase.pgsql); - private Set _supportedDatabases = ALL_DATABASES; + private Set _supportedDatabases = ONLY_POSTGRESQL; @NotNull @Override diff --git a/api/src/org/labkey/api/module/MockModule.java b/api/src/org/labkey/api/module/MockModule.java index a4e50565e33..cb86530152a 100644 --- a/api/src/org/labkey/api/module/MockModule.java +++ b/api/src/org/labkey/api/module/MockModule.java @@ -470,7 +470,7 @@ public JSONObject getPageContextJson(ContainerUser context) @Override public Set getSupportedDatabasesSet() { - return DefaultModule.ALL_DATABASES; + return DefaultModule.ONLY_POSTGRESQL; } @Nullable diff --git a/mothership/module.properties b/mothership/module.properties index 8dd56ae738a..08a8637187e 100644 --- a/mothership/module.properties +++ b/mothership/module.properties @@ -5,4 +5,3 @@ Organization: LabKey OrganizationURL: https://www.labkey.com/ License: Apache 2.0 LicenseURL: http://www.apache.org/licenses/LICENSE-2.0 -SupportedDatabases: pgsql