diff options
author | Patrick Cloke <patrickc@matrix.org> | 2021-01-20 10:53:39 -0500 |
---|---|---|
committer | Patrick Cloke <patrickc@matrix.org> | 2021-01-20 10:53:39 -0500 |
commit | d5349959f4422a15c5a9a56ffab1a2fd1b0b0629 (patch) | |
tree | 31012d851bb80fff85e4f4d1e88459653644e443 | |
parent | Add upgrade notes about chain cover. (diff) | |
download | synapse-d5349959f4422a15c5a9a56ffab1a2fd1b0b0629.tar.xz |
SQL formatting in UPGRADE.
-rw-r--r-- | UPGRADE.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/UPGRADE.rst b/UPGRADE.rst index c5565fb814..e38824df14 100644 --- a/UPGRADE.rst +++ b/UPGRADE.rst @@ -113,11 +113,15 @@ back to v1.25.0 you need to: For PostgreSQL run: + .. code:: sql + TRUNCATE event_auth_chain_links; TRUNCATE event_auth_chains; For SQLite run: + .. code:: sql + DELETE FROM event_auth_chain_links; DELETE FROM event_auth_chains; |