stillbox/sql/postgres/queries/calls.sql

19 lines
301 B
MySQL
Raw Normal View History

2024-07-15 22:30:32 -04:00
-- name: AddCall :one
INSERT INTO calls (
id,
submitter,
system,
talkgroup,
date,
audio_name,
audio_blob,
audio_type,
audio_url,
frequency_integer,
frequencies,
patches,
tg_label,
source
) VALUES (gen_random_uuid(), $1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13)
RETURNING *;