1
0
mirror of https://github.com/matrix-org/matrix-authentication-service.git synced 2025-08-07 17:03:01 +03:00

Save the session activity in the database

This commit is contained in:
Quentin Gliech
2023-09-19 19:02:59 +02:00
parent 407c78a7be
commit b85655b944
14 changed files with 352 additions and 5 deletions

View File

@@ -0,0 +1,39 @@
-- Copyright 2023 The Matrix.org Foundation C.I.C.
--
-- Licensed under the Apache License, Version 2.0 (the "License");
-- you may not use this file except in compliance with the License.
-- You may obtain a copy of the License at
--
-- http://www.apache.org/licenses/LICENSE-2.0
--
-- Unless required by applicable law or agreed to in writing, software
-- distributed under the License is distributed on an "AS IS" BASIS,
-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-- See the License for the specific language governing permissions and
-- limitations under the License.
-- This adds a `last_active_at` timestamp and a `last_active_ip` column
-- to the `oauth2_sessions`, `user_sessions` and `compat_sessions` tables.
-- The timestamp is indexed with the `user_id`, as they are likely to be queried together.
ALTER TABLE "oauth2_sessions"
ADD COLUMN "last_active_at" TIMESTAMP WITH TIME ZONE,
ADD COLUMN "last_active_ip" INET;
CREATE INDEX "oauth2_sessions_user_id_last_active_at"
ON "oauth2_sessions" ("user_id", "last_active_at");
ALTER TABLE "user_sessions"
ADD COLUMN "last_active_at" TIMESTAMP WITH TIME ZONE,
ADD COLUMN "last_active_ip" INET;
CREATE INDEX "user_sessions_user_id_last_active_at"
ON "user_sessions" ("user_id", "last_active_at");
ALTER TABLE "compat_sessions"
ADD COLUMN "last_active_at" TIMESTAMP WITH TIME ZONE,
ADD COLUMN "last_active_ip" INET;
CREATE INDEX "compat_sessions_user_id_last_active_at"
ON "compat_sessions" ("user_id", "last_active_at");