summaryrefslogtreecommitdiff
path: root/butler/butler.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2021-05-29 13:15:16 +0200
committeremkael <emkael@tlen.pl>2021-05-29 13:15:16 +0200
commitb72cbe1af6507bbe44a82930e312ace82a909280 (patch)
tree258712b35a83e45faa22e463764b2d5b1b6fd6df /butler/butler.py
parent1fcb283644be96f4b1418dbd80c3fcaa521b8395 (diff)
Bugfixes for accumulated butler
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: