All Downloads are FREE. Search and download functionalities are using the official Maven repository.

db.migration.v0.31.0.2__genoterm.sql Maven / Gradle / Ivy

There is a newer version: v0.35.0
Show newest version
-- GENOTerm tables
CREATE TABLE genoterm (
    id bigint NOT NULL
);

ALTER TABLE ONLY genoterm
    ADD CONSTRAINT genoterm_pkey PRIMARY KEY (id);

ALTER TABLE ONLY genoterm
    ADD CONSTRAINT genoterm_id_fk FOREIGN KEY (id) REFERENCES ontologyterm(id);




© 2015 - 2024 Weber Informatics LLC | Privacy Policy