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
4 changes: 2 additions & 2 deletions api/src/org/labkey/api/module/DefaultModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -528,9 +528,9 @@ public Collection<String> getProvisionedSchemaNames()
return Collections.emptySet();
}

protected static final Set<SupportedDatabase> ALL_DATABASES = Set.of(SupportedDatabase.mssql, SupportedDatabase.pgsql);
protected static final Set<SupportedDatabase> ONLY_POSTGRESQL = Set.of(SupportedDatabase.pgsql);

private Set<SupportedDatabase> _supportedDatabases = ALL_DATABASES;
private Set<SupportedDatabase> _supportedDatabases = ONLY_POSTGRESQL;

@NotNull
@Override
Expand Down
2 changes: 1 addition & 1 deletion api/src/org/labkey/api/module/MockModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,7 @@ public JSONObject getPageContextJson(ContainerUser context)
@Override
public Set<SupportedDatabase> getSupportedDatabasesSet()
{
return DefaultModule.ALL_DATABASES;
return DefaultModule.ONLY_POSTGRESQL;
}

@Nullable
Expand Down
1 change: 0 additions & 1 deletion mothership/module.properties
Original file line number Diff line number Diff line change
Expand Up @@ -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