tangled
alpha
login
or
join now
moth11.net
/
rvcx
3
fork
atom
backend for xcvr appview
3
fork
atom
overview
issues
4
pulls
pipelines
yowza, plus gitignore
moth11.net
5 months ago
c125c603
b754aa8d
+2
-1
2 changed files
expand all
collapse all
unified
split
.gitignore
migrations
006_initbans.up.sql
+1
.gitignore
···
26
26
27
27
jwks.json
28
28
29
29
+
server/uploads
+1
-1
migrations/006_initbans.up.sql
···
1
1
CREATE TABLE bans (
2
2
id SERIAL PRIMARY KEY,
3
3
-
did TEXT PRIMARY KEY,
3
3
+
did TEXT NOT NULL,
4
4
reason TEXT,
5
5
till TIMESTAMPTZ,
6
6
banned_at TIMESTAMPTZ NOT NULL DEFAULT now()