2024-11-06 20:47:10 -05:00
|
|
|
-- name: AddCall :exec
|
2024-07-15 22:30:32 -04:00
|
|
|
INSERT INTO calls (
|
2024-11-06 20:47:10 -05:00
|
|
|
id,
|
|
|
|
submitter,
|
|
|
|
system,
|
|
|
|
talkgroup,
|
|
|
|
call_date,
|
|
|
|
audio_name,
|
|
|
|
audio_blob,
|
|
|
|
audio_type,
|
|
|
|
audio_url,
|
|
|
|
duration,
|
|
|
|
frequency,
|
|
|
|
frequencies,
|
|
|
|
patches,
|
|
|
|
tg_label,
|
|
|
|
tg_alpha_tag,
|
|
|
|
tg_group,
|
|
|
|
source
|
|
|
|
) VALUES (
|
|
|
|
@id,
|
|
|
|
@submitter,
|
|
|
|
@system,
|
|
|
|
@talkgroup,
|
|
|
|
@call_date,
|
|
|
|
@audio_name,
|
|
|
|
@audio_blob,
|
|
|
|
@audio_type,
|
|
|
|
@audio_url,
|
|
|
|
@duration,
|
|
|
|
@frequency,
|
|
|
|
@frequencies,
|
|
|
|
@patches,
|
|
|
|
@tg_label,
|
|
|
|
@tg_alpha_tag,
|
|
|
|
@tg_group,
|
|
|
|
@source
|
|
|
|
);
|
2024-07-16 19:31:30 -04:00
|
|
|
|
2024-07-17 19:33:09 -04:00
|
|
|
-- name: SetCallTranscript :exec
|
2024-07-16 19:31:30 -04:00
|
|
|
UPDATE calls SET transcript = $2 WHERE id = $1;
|
2024-10-20 12:26:32 -04:00
|
|
|
|
2024-11-01 09:15:39 -04:00
|
|
|
-- name: AddAlert :exec
|
2024-11-17 21:46:10 -05:00
|
|
|
INSERT INTO alerts (time, tgid, system_id, weight, score, orig_score, notified, metadata)
|
2024-11-01 09:15:39 -04:00
|
|
|
VALUES
|
|
|
|
(
|
|
|
|
sqlc.arg(time),
|
2024-11-12 10:14:11 -05:00
|
|
|
sqlc.arg(tgid),
|
|
|
|
sqlc.arg(system_id),
|
2024-11-01 09:15:39 -04:00
|
|
|
sqlc.arg(weight),
|
|
|
|
sqlc.arg(score),
|
2024-11-02 09:41:48 -04:00
|
|
|
sqlc.arg(orig_score),
|
2024-11-02 14:26:58 -04:00
|
|
|
sqlc.arg(notified),
|
2024-11-01 09:15:39 -04:00
|
|
|
sqlc.arg(metadata)
|
|
|
|
);
|
|
|
|
|
2024-10-20 13:04:42 -04:00
|
|
|
-- name: GetDatabaseSize :one
|
|
|
|
SELECT pg_size_pretty(pg_database_size(current_database()));
|