summaryrefslogtreecommitdiff
path: root/schema.sql
diff options
context:
space:
mode:
authorTor Andersson <tor@ccxvii.net>2023-11-30 00:22:17 +0100
committerTor Andersson <tor@ccxvii.net>2023-11-30 00:32:57 +0100
commit0930089a79d8eda142e0c6e94d163394f7671228 (patch)
treeecc8234756ae96e3823a203b83ae2636e7d55a72 /schema.sql
parent46fd8460c58ebeb00fe884676c0411c93f159209 (diff)
downloadserver-0930089a79d8eda142e0c6e94d163394f7671228.tar.gz
Log IP access.
Diffstat (limited to 'schema.sql')
-rw-r--r--schema.sql3
1 files changed, 2 insertions, 1 deletions
diff --git a/schema.sql b/schema.sql
index e25c5b6..49da960 100644
--- a/schema.sql
+++ b/schema.sql
@@ -40,7 +40,8 @@ insert or ignore into
create table if not exists user_last_seen (
user_id integer primary key,
- atime datetime
+ atime datetime,
+ ip text
);
create table if not exists tokens (