You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
396 B
SQL
11 lines
396 B
SQL
DROP TABLE buscribe_transcriptions;
|
|
|
|
CREATE TABLE buscribe_transcriptions
|
|
(
|
|
id BIGSERIAL PRIMARY KEY,
|
|
start_time timestamp without time zone NOT NULL,
|
|
end_time timestamp without time zone NOT NULL,
|
|
transcription_line text NOT NULL,
|
|
line_speaker float[128],
|
|
transcription_json jsonb NOT NULL
|
|
); |