Skip to content

Commit

Permalink
fix(schema): don't try to re-create strand_type
Browse files Browse the repository at this point in the history
  • Loading branch information
davidlougheed committed Nov 30, 2023
1 parent 686069b commit 7440ffc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bento_reference_service/sql/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ CREATE TABLE IF NOT EXISTS genome_feature_type_synonyms (
);

-- corresponds with the GFF3 values: [-, +, ?, .] respectively
CREATE TYPE strand_type AS ENUM ('negative', 'positive', 'unknown', 'not_stranded');
CREATE TYPE IF NOT EXISTS strand_type AS ENUM ('negative', 'positive', 'unknown', 'not_stranded');

CREATE TABLE IF NOT EXISTS genome_features (
genome_id VARCHAR(31) NOT NULL REFERENCES genomes,
Expand Down

0 comments on commit 7440ffc

Please sign in to comment.