feat(db): changed index

This commit is contained in:
Taha Yassine Kraiem 2021-10-13 11:48:06 +02:00
parent ebfa2b3815
commit f537a77e5e

View file

@ -172,7 +172,6 @@ CREATE TABLE projects
"defaultInputMode": "plain"
}'::jsonb -- ??????
);
CREATE INDEX projects_tenant_id_idx ON projects (tenant_id);
CREATE OR REPLACE FUNCTION notify_project() RETURNS trigger AS
$$
@ -248,7 +247,6 @@ create table webhooks
index integer default 0 not null,
name varchar(100)
);
CREATE INDEX webhooks_tenant_id_idx ON webhooks (tenant_id);
-- --- notifications.sql ---