15 lines
643 B
SQL
15 lines
643 B
SQL
-- Migration: Create Webhooks Table
|
|
CREATE TABLE IF NOT EXISTS webhooks (
|
|
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
|
|
organization_id UUID NOT NULL REFERENCES organizations(id) ON DELETE CASCADE,
|
|
url VARCHAR(500) NOT NULL,
|
|
events VARCHAR(50)[] NOT NULL, -- e.g., ['course.published', 'lesson.completed']
|
|
secret VARCHAR(255), -- For HMAC-SHA256 signatures
|
|
is_active BOOLEAN NOT NULL DEFAULT TRUE,
|
|
created_at TIMESTAMPTZ NOT NULL DEFAULT NOW(),
|
|
updated_at TIMESTAMPTZ NOT NULL DEFAULT NOW()
|
|
);
|
|
|
|
-- Index for organization_id
|
|
CREATE INDEX IF NOT EXISTS idx_webhooks_organization_id ON webhooks(organization_id);
|