Skip to content
Snippets Groups Projects
Commit 73e17e45 authored by epaule's avatar epaule
Browse files

don't use TYPE= that has been deprecated years ago and doesn't work anymore

parent adfad7be
No related branches found
No related tags found
No related merge requests found
......@@ -1286,7 +1286,7 @@ my $sql =(<<SQL);
source_id INT NOT NULL,
priority INT NOT NULL,
PRIMARY KEY (source_id)
) COLLATE=latin1_swedish_ci TYPE=InnoDB
) COLLATE=latin1_swedish_ci ENGINE=InnoDB
SQL
my $sth = $self->xref->dbc->prepare($sql);
......@@ -1573,7 +1573,7 @@ sub set_gene_descriptions{
source_id INT NOT NULL,
priority INT NOT NULL,
PRIMARY KEY (source_id)
) COLLATE=latin1_swedish_ci TYPE=InnoDB
) COLLATE=latin1_swedish_ci ENGINE=InnoDB
SQL
$sth = $self->xref->dbc->prepare($sql);
......
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