new_model_for_communities #15

Merged
michele.artini merged 81 commits from new_model_for_communities into master 2023-10-24 08:12:26 +02:00
1 changed files with 2 additions and 2 deletions
Showing only changes of commit 9ef99f4785 - Show all commits

View File

@ -43,7 +43,7 @@ CREATE TABLE community_datasources (
); );
CREATE TABLE community_support_orgs ( CREATE TABLE community_support_orgs (
community text REFERENCES communities(id), community text NOT NULL REFERENCES communities(id),
org_name text NOT NULL, org_name text NOT NULL,
org_url text NOT NULL, org_url text NOT NULL,
org_logourl text NOT NULL, org_logourl text NOT NULL,
@ -51,7 +51,7 @@ CREATE TABLE community_support_orgs (
); );
CREATE TABLE community_orgs ( CREATE TABLE community_orgs (
community text REFERENCES communities(id), community text NOT NULL REFERENCES communities(id),
org_id text NOT NULL, org_id text NOT NULL,
PRIMARY KEY (community, org_id) PRIMARY KEY (community, org_id)
); );