Skip to content

Commit

Permalink
Add sample_synonym table
Browse files Browse the repository at this point in the history
  • Loading branch information
at7 committed Mar 14, 2016
1 parent eb75efa commit ba8d734
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions sql/patch_84_85_b.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
CREATE TABLE sample_synonym (
synonym_id int(10) unsigned not null auto_increment,
sample_id int(10) unsigned not null,
source_id int(10) unsigned not null,
name varchar(255),
primary key(synonym_id),
key sample_idx (sample_id),
key (name, source_id)
);

INSERT INTO meta (species_id, meta_key, meta_value) VALUES (NULL, 'patch', 'patch_84_85_b.sql|create sample_synonym');

0 comments on commit ba8d734

Please sign in to comment.