summaryrefslogtreecommitdiff
path: root/butler/butler.py
diff options
context:
space:
mode:
Diffstat (limited to 'butler/butler.py')
-rw-r--r--butler/butler.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/butler/butler.py b/butler/butler.py
index 333f503..0405ddc 100644
--- a/butler/butler.py
+++ b/butler/butler.py
@@ -25,7 +25,7 @@ player_offset = 0
for s_db in config['source']:
print('USE %s;' % (s_db))
- for table in ['matches', 'players', 'scores', 'teams', 'segments']:
+ for table in ['rounds', 'matches', 'players', 'scores', 'teams', 'segments']:
print('DROP TABLE IF EXISTS _%s;' % (table))
print('CREATE TABLE _%s AS SELECT * FROM %s;' % (table, table))
if s_db in queries: