Ir al contenido

Table: asset_subtitle_tracks

Esta página aún no está disponible en tu idioma.

This table references:

  • assets(id) via column asset_id
ColumnTypeNullableNotes
asset_iduuidnoReferences assets(id)
langtextno
labeltextnoDefault ''::text
file_hashtextno
source_formattextno
confidencerealnoDefault 1.0
created_attimestampnoDefault now()
  • CONSTRAINT asset_subtitle_tracks_confidence_check CHECK (((confidence >= (0)::double precision) AND (confidence <= (1)::double precision)))
  • CONSTRAINT asset_subtitle_tracks_lang_check CHECK (((lang ~ '^[A-Za-z]{1,8}(-[A-Za-z0-9]{1,8}){0,4}$'::text) OR (lang = 'und'::text)))
  • CONSTRAINT asset_subtitle_tracks_source_format_check CHECK ((source_format = ANY (ARRAY['vtt'::text, 'srt'::text, 'ssa'::text, 'ass'::text, 'sub'::text, 'idx'::text, 'whisper'::text])))
CREATE TABLE public.asset_subtitle_tracks (
asset_id uuid NOT NULL,
lang text NOT NULL,
label text DEFAULT ''::text NOT NULL,
file_hash text NOT NULL,
source_format text NOT NULL,
confidence real DEFAULT 1.0 NOT NULL,
created_at timestamp with time zone DEFAULT now() NOT NULL,
CONSTRAINT asset_subtitle_tracks_confidence_check CHECK (((confidence >= (0)::double precision) AND (confidence <= (1)::double precision))),
CONSTRAINT asset_subtitle_tracks_lang_check CHECK (((lang ~ '^[A-Za-z]{1,8}(-[A-Za-z0-9]{1,8}){0,4}$'::text) OR (lang = 'und'::text))),
CONSTRAINT asset_subtitle_tracks_source_format_check CHECK ((source_format = ANY (ARRAY['vtt'::text, 'srt'::text, 'ssa'::text, 'ass'::text, 'sub'::text, 'idx'::text, 'whisper'::text])))
);

Please see the schema overview for context. This document was last regenerated on 2026-07-26T08:25:29.520Z.