Skip to content
Snippets Groups Projects
Commit 976f6fa4 authored by Vermaat's avatar Vermaat
Browse files

Fix missing column in database setup script

parent 37935324
No related branches found
No related tags found
No related merge requests found
......@@ -144,7 +144,8 @@ CREATE TABLE GBInfo (
) ENGINE = MYISAM;
CREATE TABLE Link (
mrnaAcc char(20) NOT NULL,
protAcc char(20) NOT NULL,
protAcc char(20) DEFAULT NULL,
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (mrnaAcc),
UNIQUE KEY protAcc (protAcc)
) ENGINE = MYISAM;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment