Skip to content
Snippets Groups Projects
Commit 4b7efa3d authored by Glenn Proctor's avatar Glenn Proctor
Browse files

Added new setting of meta schema_version.

parent b219a5f7
No related branches found
No related tags found
No related merge requests found
# Patch to convert release 35 Ensembl schema to release 36
UPDATE meta set meta_value="36" where meta_key="schema_version";
# New table (so no data conversion required) for storing regulatory search regions
CREATE TABLE regulatory_search_region (
......@@ -23,3 +25,4 @@ CREATE TABLE regulatory_search_region (
ALTER TABLE density_type ADD COLUMN region_features INT NOT NULL AFTER block_size;
ALTER TABLE density_type DROP INDEX analysis_id;
ALTER TABLE density_type ADD UNIQUE analysis_id( analysis_id, block_size, region_features);
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment