Skip to content

Commit

Permalink
Update create_db.sql
Browse files Browse the repository at this point in the history
update filed names that clash with SQL keywords
  • Loading branch information
leannehaggerty authored May 15, 2024
1 parent 15010bb commit 0a2cdac
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/mysql/create_db.sql
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ use transcriptomic_hackathon;
create table data_files (
file_id int not null auto_increment,
run_id int not null,
name varchar(255) not null,
url varchar(255) not null,
file_name varchar(255) not null,
file_url varchar(255) not null,
md5 varchar(255) not null,
basic_statistics SET("PASS","FAIL","WARN"),
per_base_sequence_quality SET("PASS","FAIL","WARN"),
Expand Down Expand Up @@ -45,7 +45,7 @@ create table run (
platform varchar(255),
paired bool not null,
experiment varchar(255),
description text,
run_description text,
library_name varchar(255),
library_selection varchar(255),
tissue varchar(255),
Expand Down

0 comments on commit 0a2cdac

Please sign in to comment.