From 7acb89ce6c777bd6fc94c2577ebae57fa3912cb1 Mon Sep 17 00:00:00 2001 From: Daniel Ponte Date: Fri, 27 Dec 2024 17:14:55 -0500 Subject: [PATCH] credits --- README.md | 14 ++++++++++++-- sql/postgres/migrations/001_initial.up.sql | 4 ++-- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 8e077c1..2b5c5ca 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ Primary differences: - [x] Talkgroup activity alerting - We use [go-trending](https://github.com/andygrunwald/go-trending) to implement this. + We use [go-trending](https://github.com/codesuki/go-trending) to implement this. - [x] "Native" flutter client (Calls) for Android/iOS/macOS/Linux/Windows (in progress) @@ -64,4 +64,14 @@ protobuf best practices (i.e. not changing field numbers). ## License and Copyright -© 2024, Daniel Ponte . Licensed under the 3-clause BSD license. See LICENSE for details. +© 2024, Daniel Ponte + +Licensed under the 3-clause BSD license. See LICENSE for details. + +## Credits + +Thanks to, among others: +* rdio-scanner for the original inspiration +* [go-trending](https://github.com/codesuki/go-trending) and [go-time-series](https://github.com/codesuki/go-time-series) +* [isoweek](https://github.com/snabb/isoweek) +* [minimp3](https://github.com/tosone/minimp3) diff --git a/sql/postgres/migrations/001_initial.up.sql b/sql/postgres/migrations/001_initial.up.sql index c766ae0..b9bc94c 100644 --- a/sql/postgres/migrations/001_initial.up.sql +++ b/sql/postgres/migrations/001_initial.up.sql @@ -142,8 +142,8 @@ CREATE TABLE IF NOT EXISTS incidents( id UUID PRIMARY KEY, name TEXT NOT NULL, description TEXT, - start_time TIMESTAMP, - end_time TIMESTAMP, + start_time TIMESTAMPTZ, + end_time TIMESTAMPTZ, location JSONB, metadata JSONB );