db.migration.v0.21.0.3__dpoterm.sql Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of agr_curation_api Show documentation
Show all versions of agr_curation_api Show documentation
This software is for using the curation api as a library
CREATE TABLE dpoterm (
curie character varying(255) NOT NULL
);
ALTER TABLE ONLY dpoterm
ADD CONSTRAINT dpoterm_pkey PRIMARY KEY (curie);
ALTER TABLE ONLY dpoterm
ADD CONSTRAINT dpoterm_curie_fk FOREIGN KEY (curie) REFERENCES phenotypeterm(curie);
CREATE TABLE dpoterm_aud (
curie character varying(255) NOT NULL,
rev integer NOT NULL
);
ALTER TABLE dpoterm_aud
ADD CONSTRAINT dpoterm_aud_pkey PRIMARY KEY (curie, rev);
ALTER TABLE ONLY dpoterm_aud
ADD CONSTRAINT dpoterm_aud_curie_rev_fk FOREIGN KEY (curie, rev) REFERENCES phenotypeterm_aud(curie, rev);