diff options
author | Erik Johnston <erik@matrix.org> | 2016-04-06 14:08:18 +0100 |
---|---|---|
committer | Erik Johnston <erik@matrix.org> | 2016-04-06 14:15:45 +0100 |
commit | 8aab9d87fa6739345810f0edf3982fe7f898ee30 (patch) | |
tree | 8ef3d62989c3014732b8efcaafddfc9c43c36b77 /synapse/storage/schema/delta/20 | |
parent | Merge pull request #692 from matrix-org/markjh/replicate_reshuffle (diff) | |
download | synapse-8aab9d87fa6739345810f0edf3982fe7f898ee30.tar.xz |
Don't require config to create database
Diffstat (limited to 'synapse/storage/schema/delta/20')
-rw-r--r-- | synapse/storage/schema/delta/20/pushers.py | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/synapse/storage/schema/delta/20/pushers.py b/synapse/storage/schema/delta/20/pushers.py index 29164732af..147496a38b 100644 --- a/synapse/storage/schema/delta/20/pushers.py +++ b/synapse/storage/schema/delta/20/pushers.py @@ -27,7 +27,7 @@ import logging logger = logging.getLogger(__name__) -def run_upgrade(cur, database_engine, *args, **kwargs): +def run_create(cur, database_engine, *args, **kwargs): logger.info("Porting pushers table...") cur.execute(""" CREATE TABLE IF NOT EXISTS pushers2 ( @@ -74,3 +74,7 @@ def run_upgrade(cur, database_engine, *args, **kwargs): cur.execute("DROP TABLE pushers") cur.execute("ALTER TABLE pushers2 RENAME TO pushers") logger.info("Moved %d pushers to new table", count) + + +def run_upgrade(*args, **kwargs): + pass |