Skip to content
Snippets Groups Projects
Commit abdbf3dd authored by Piotr Gawron's avatar Piotr Gawron
Browse files

database contains information about model annotations

parent ab3f3059
Branches devel_17.1.x
Tags v17.1.4
1 merge request!708Resolve "add handling of annotations for model"
CREATE TABLE model_miriam_data_table
(
model_id integer NOT NULL,
miriam_data_id integer not null,
CONSTRAINT model_miriam_data_table_modle_fk FOREIGN KEY (model_id)
REFERENCES model_data_table (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION,
CONSTRAINT model_miriam_data_table_miriam_data_fk FOREIGN KEY (miriam_data_id)
REFERENCES miriam_data_table (id) MATCH SIMPLE
ON UPDATE NO ACTION ON DELETE NO ACTION
)
WITH (
OIDS=FALSE
);
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment