penpot/backend/src/app/migrations/sql/0131-mod-webhook-table.sql
2024-10-15 13:38:46 +02:00

6 lines
No EOL
195 B
SQL

ALTER TABLE webhook
ADD COLUMN profile_id uuid NULL REFERENCES profile (id) ON DELETE SET NULL;
CREATE INDEX webhook__profile_id__idx
ON webhook (profile_id)
WHERE profile_id IS NOT NULL;