aboutsummaryrefslogtreecommitdiffstats
path: root/crates/aggregator/migrations/20250816113451_evaluation.sql
blob: c8c0ac7e416f71d459f46170ef14b2b88ec47a73 (plain)
1
2
3
4
5
6
-- Add migration script here
create table evaluation (
    id uuid primary key,
    document jsonb not null,
    created_at timestamptz default now()
);