diff options
author | Cristina <hi@xmunoz.com> | 2021-07-08 10:57:13 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-08 16:57:13 +0100 |
commit | f6767abc054f3461cd9a70ba096fcf9a8e640edb (patch) | |
tree | f4f9efe8bd1595da5e0c2229cfa1b0483b9e501c /synapse/storage/schema | |
parent | Minor changes to `user_daily_visits` (#10324) (diff) | |
download | synapse-f6767abc054f3461cd9a70ba096fcf9a8e640edb.tar.xz |
Remove functionality associated with unused historical stats tables (#9721)
Fixes #9602
Diffstat (limited to 'synapse/storage/schema')
-rw-r--r-- | synapse/storage/schema/__init__.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/storage/schema/__init__.py b/synapse/storage/schema/__init__.py index 0a53b73ccc..36340a652a 100644 --- a/synapse/storage/schema/__init__.py +++ b/synapse/storage/schema/__init__.py @@ -12,7 +12,7 @@ # See the License for the specific language governing permissions and # limitations under the License. -SCHEMA_VERSION = 60 +SCHEMA_VERSION = 61 """Represents the expectations made by the codebase about the database schema This should be incremented whenever the codebase changes its requirements on the @@ -21,6 +21,10 @@ older versions of Synapse). See `README.md <synapse/storage/schema/README.md>`_ for more information on how this works. + +Changes in SCHEMA_VERSION = 61: + - The `user_stats_historical` and `room_stats_historical` tables are not written and + are not read (previously, they were written but not read). """ |