Skip to content
Snippets Groups Projects
Commit ac06bd18 authored by Andy Yates's avatar Andy Yates
Browse files

Data file needs to be MyISAM

parent 8cb9a7ca
No related branches found
No related tags found
No related merge requests found
......@@ -20,7 +20,7 @@ CREATE TABLE data_file (
UNIQUE KEY df_unq_idx(coord_system_id, analysis_id, name, file_type),
INDEX df_name_idx(name),
INDEX df_analysis_idx(analysis_id)
);
) ENGINE=MyISAM;
# Patch identifier
INSERT INTO meta (species_id, meta_key, meta_value)
......
......@@ -2514,7 +2514,7 @@ CREATE TABLE data_file (
UNIQUE KEY df_unq_idx(coord_system_id, analysis_id, name, file_type),
INDEX df_name_idx(name),
INDEX df_analysis_idx(analysis_id)
);
) ENGINE=MyISAM;
CREATE DEFINER = CURRENT_USER SQL SECURITY INVOKER VIEW exon_stable_id (exon_id, stable_id, version, created_date, modified_date) AS (SELECT exon_id, stable_id, version, created_date, modified_date FROM exon);
......
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