mirror of
https://github.com/penpot/penpot.git
synced 2025-05-24 03:16:11 +02:00
🎉 Add proper lifecycle handling for http sessions.
This commit is contained in:
parent
995017df5a
commit
fb51580740
5 changed files with 227 additions and 86 deletions
|
@ -0,0 +1,6 @@
|
|||
ALTER TABLE http_session
|
||||
ADD COLUMN updated_at timestamptz NULL;
|
||||
|
||||
CREATE INDEX http_session__updated_at__idx
|
||||
ON http_session (updated_at)
|
||||
WHERE updated_at IS NOT NULL;
|
Loading…
Add table
Add a link
Reference in a new issue