Skip to content

Commit

Permalink
unquoting
Browse files Browse the repository at this point in the history
  • Loading branch information
oolonek committed Feb 12, 2024
1 parent 281b15f commit 67cd417
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ CREATE TABLE sample_taxa (
sample_id INTEGER NOT NULL REFERENCES samples(id) ON DELETE CASCADE,
taxon_id INTEGER NOT NULL REFERENCES taxa(id) ON DELETE CASCADE,
PRIMARY KEY (sample_id, taxon_id)
);

);
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ CREATE TABLE sampled_individual_taxa (
taxon_id INTEGER NOT NULL REFERENCES taxa(id) ON DELETE CASCADE,
PRIMARY KEY (sampled_individual_id, taxon_id)
);
```

0 comments on commit 67cd417

Please sign in to comment.