Files
template-vitrine/backend/migrations/000004_create_units.up.sql
T
2026-09-14 20:50:19 +02:00

8 lines
233 B
SQL

CREATE TABLE units (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
name TEXT NOT NULL,
symbol TEXT UNIQUE NOT NULL,
created_at TIMESTAMPTZ NOT NULL DEFAULT now(),
updated_at TIMESTAMPTZ NOT NULL DEFAULT now()
);