This commit is contained in:
Daniel Ponte 2024-12-27 17:14:55 -05:00
parent bb06b097da
commit 7acb89ce6c
2 changed files with 14 additions and 4 deletions

View file

@ -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 <dan AT dynatron DOT me>. Licensed under the 3-clause BSD license. See LICENSE for details.
© 2024, Daniel Ponte <dan AT dynatron DOT me>
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)

View file

@ -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
);