Skip to content

Commit

Permalink
Bump schema versions to 25.000
Browse files Browse the repository at this point in the history
  • Loading branch information
labkey-adam committed Dec 28, 2024
1 parent ba27d78 commit 9fe8608
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 41 deletions.
2 changes: 1 addition & 1 deletion elisa/src/org/labkey/elisa/ElisaModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion elispotassay/src/org/labkey/elispot/ElispotModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
package org.labkey.elispot.query;

import org.labkey.api.assay.AssayDomainKind;
import org.labkey.api.data.DbSchema;
import org.labkey.api.data.DbSchemaType;
import org.labkey.api.data.DbScope;
import org.labkey.api.data.JdbcType;
import org.labkey.api.data.PropertyStorageSpec;
Expand All @@ -32,9 +30,6 @@
import java.util.LinkedHashSet;
import java.util.Set;

/**
* Created by davebradlee on 3/24/15.
*/
public class ElispotAntigenDomainKind extends AssayDomainKind
{
public static final String KINDNAME = "ElispotAntigenDomainKind";
Expand Down Expand Up @@ -91,17 +86,6 @@ public String getStorageSchemaName()
return ElispotProtocolSchema.ELISPOT_ANTIGEN_SCHEMA_NAME;
}

private DbSchema getSchema()
{
return DbSchema.get(getStorageSchemaName(), getSchemaType());
}

@Override
public DbSchemaType getSchemaType()
{
return DbSchemaType.Provisioned;
}

@Override
public Set<String> getReservedPropertyNames(Domain domain, User user)
{
Expand Down
2 changes: 1 addition & 1 deletion flow/src/org/labkey/flow/FlowModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion luminex/src/org/labkey/luminex/LuminexModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion microarray/src/org/labkey/microarray/MicroarrayModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion ms2/src/org/labkey/ms2/MS2Module.java
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion nab/src/org/labkey/nab/NabModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down
16 changes: 0 additions & 16 deletions nab/src/org/labkey/nab/query/NabVirusDomainKind.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@
package org.labkey.nab.query;

import org.labkey.api.assay.AssayDomainKind;
import org.labkey.api.data.DbSchema;
import org.labkey.api.data.DbSchemaType;
import org.labkey.api.data.DbScope;
import org.labkey.api.data.JdbcType;
import org.labkey.api.data.PropertyStorageSpec;
Expand All @@ -30,9 +28,6 @@
import java.util.LinkedHashSet;
import java.util.Set;

/**
* Created by klum on 7/18/2014.
*/
public class NabVirusDomainKind extends AssayDomainKind
{
public static final String VIRUS_LSID_COLUMN_NAME = "virusLsid";
Expand Down Expand Up @@ -78,17 +73,6 @@ public String getStorageSchemaName()
return NabProtocolSchema.NAB_VIRUS_SCHEMA_NAME;
}

private DbSchema getSchema()
{
return DbSchema.get(getStorageSchemaName(), getSchemaType());
}

@Override
public DbSchemaType getSchemaType()
{
return DbSchemaType.Provisioned;
}

@Override
public Set<String> getReservedPropertyNames(Domain domain, User user)
{
Expand Down
2 changes: 1 addition & 1 deletion protein/src/org/labkey/protein/ProteinModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.002;
return 25.000;
}

@Override
Expand Down
2 changes: 1 addition & 1 deletion viability/src/org/labkey/viability/ViabilityModule.java
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ public String getName()
@Override
public @Nullable Double getSchemaVersion()
{
return 24.000;
return 25.000;
}

@Override
Expand Down

0 comments on commit 9fe8608

Please sign in to comment.