1
0

Add ui_auth_sessions_ips table to synapse_port_db ignore list (#8410)

This table was created in #8034 (1.20.0).  It references
`ui_auth_sessions`, which is ignored, so this one should be too.

Signed-off-by: Dagfinn Ilmari Mannsåker <ilmari@ilmari.org>
This commit is contained in:
Dagfinn Ilmari Mannsåker
2020-09-28 15:35:02 +01:00
committed by GitHub
parent 450ec48445
commit bd715e1278
2 changed files with 2 additions and 0 deletions

View File

@@ -145,6 +145,7 @@ IGNORED_TABLES = {
# the sessions are transient anyway, so ignore them.
"ui_auth_sessions",
"ui_auth_sessions_credentials",
"ui_auth_sessions_ips",
}