If you delete a session then the number of rows in the DB should definitely change. Maybe there is some lag in the database reporting, or you have multiple Postgres addons, and the one giving the warning is not the main database attached to your application
Other general advice for many DB rows used:
- You have many rounds, which multiplies the number of database rows used (1 per player)
- You are using some other model like ExtraModel
- You have created demo sessions, which take up DB rows but are not shown in the UI
The definite way to know is to use the postgres command line (psql) and query your database, which will show all tables and how many rows each table has.