mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-21 17:53:51 +01:00
We can't use REPLACE when upgrading databases now we have postgres
This commit is contained in:
parent
64991b0c8b
commit
970a9b9d2b
1 changed files with 2 additions and 1 deletions
|
@ -368,9 +368,10 @@ def _upgrade_existing_database(cur, current_version, applied_delta_files,
|
|||
(v, relative_path)
|
||||
)
|
||||
|
||||
cur.execute("DELETE FROM schema_version")
|
||||
cur.execute(
|
||||
database_engine.convert_param_style(
|
||||
"REPLACE INTO schema_version (version, upgraded)"
|
||||
"INSERT INTO schema_version (version, upgraded)"
|
||||
" VALUES (?,?)",
|
||||
),
|
||||
(v, True)
|
||||
|
|
Loading…
Reference in a new issue