ModelForge CI
deploy: 2026-06-19 19:24 UTC
6761f70
Raw
History Blame Contribute Delete
318 Bytes
-- Add deploy tracking columns to runs
alter table public.runs
add column if not exists model_card text,
add column if not exists deploy_status text default 'not_deployed'
check (deploy_status in ('not_deployed', 'deploying', 'deployed', 'failed', 'skipped')),
add column if not exists hf_repo_id text;