Name
Ward Van Assche
Address
Emiel Lossystraat 89
9040 Ghent
Contact information
-- depends_on: tables/organisations | |
CREATE TABLE integrations ( | |
id TEXT NOT NULL PRIMARY KEY, | |
org_id TEXT, | |
FOREIGN KEY (org_id) REFERENCES organisations(id), | |
sent_categories TEXT[] NOT NULL DEFAULT '{}', -- names or ids of the sent folders, used to calculate message direction. | |
received_categories TEXT[] NOT NULL DEFAULT '{}', -- names or ids of the received folders, used to calculate message direction. | |
default_category TEXT -- category that is considered default, used to calculate message direction in case of missing values or a conflict. |
generator client { | |
provider = "prisma-client-js" | |
} | |
datasource db { | |
provider = "postgresql" | |
url = env("DATABASE_URL") | |
} | |
model Thread { |