dnet-applications/apps/dnet-exporter-api/src/main/resources/sql/community-schema.sql

58 lines
1.8 KiB
MySQL
Raw Normal View History

2023-06-12 10:59:20 +02:00
DROP TABLE IF EXISTS community_projects;
DROP TABLE IF EXISTS community_datasources;
DROP TABLE IF EXISTS community_support_orgs;
DROP TABLE IF EXISTS community_orgs;
DROP TABLE IF EXISTS communities;
2023-06-09 15:31:30 +02:00
CREATE TABLE communities (
id text PRIMARY KEY,
label text NOT NULL,
2023-06-12 10:59:20 +02:00
description text NOT NULL DEFAULT '',
2023-06-14 11:14:24 +02:00
status text NOT NULL DEFAULT 'hidden', -- all, manager, hidden, members
membership text NOT NULL DEFAULT 'by-invitation', -- open by-invitation
2023-06-09 15:31:30 +02:00
type text NOT NULL, -- community, ri
2023-06-14 11:14:24 +02:00
claim text, -- managers-only, members-only, all
2023-06-09 15:31:30 +02:00
subjects text[],
fos text[],
sdg text[],
2023-06-12 14:30:42 +02:00
adv_constraints jsonb,
remove_constraints jsonb,
2023-06-09 15:31:30 +02:00
main_zenodo_community text,
other_zenodo_communities text[],
creation_date timestamp NOT NULL DEFAULT now(),
logo_url text
);
CREATE TABLE community_projects (
community text NOT NULL REFERENCES communities(id),
project_id text NOT NULL,
project_code text NOT NULL,
project_name text NOT NULL,
project_acronym text,
project_funder text NOT NULL,
PRIMARY KEY (community, project_id)
);
CREATE TABLE community_datasources (
community text NOT NULL REFERENCES communities(id),
ds_id text NOT NULL,
ds_name text NOT NULL,
constraints json,
PRIMARY KEY (community, ds_id)
);
CREATE TABLE community_support_orgs (
community text REFERENCES communities(id),
org_name text NOT NULL,
org_url text NOT NULL,
org_logourl text NOT NULL,
PRIMARY KEY (community, org_name)
);
CREATE TABLE community_orgs (
community text REFERENCES communities(id),
org_id text NOT NULL,
PRIMARY KEY (community, org_id)
);