Files
template-vitrine/backend/migrations/000014_create_contact_links.up.sql
Xor290 919c807004
ci-api / test (push) Failing after 8m7s
ci-web / test (push) Failing after 5m5s
chore: build
2026-09-20 12:18:33 +02:00

12 lines
414 B
SQL

CREATE TABLE contact_links (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
label TEXT NOT NULL,
url TEXT NOT NULL,
icon_media_id UUID REFERENCES media(id) ON DELETE SET NULL,
color TEXT NOT NULL DEFAULT '',
position INT NOT NULL DEFAULT 0,
is_active BOOLEAN NOT NULL DEFAULT true,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
);