feat: add last_seen field to sessions

This commit is contained in:
Jef Roosens 2025-03-15 16:12:46 +01:00
parent b5ec2e40de
commit 3f0e01aaf6
No known key found for this signature in database
GPG key ID: 21FD3D77D56BAF49
5 changed files with 18 additions and 5 deletions

View file

@ -0,0 +1,3 @@
-- This file should undo anything in `up.sql`
alter table sessions
drop column last_seen;

View file

@ -0,0 +1,3 @@
-- Your SQL goes here
alter table sessions
add column last_seen bigint not null default 0;