DB: Fix capitalisation of Gametypes table in SQLite

This commit is contained in:
steffen123 2010-07-12 11:00:50 +02:00
parent 32e1cb7b7f
commit 04ec51d7c1
2 changed files with 2 additions and 2 deletions

View File

@ -74,7 +74,7 @@ except ImportError:
use_numpy = False
DB_VERSION = 131
DB_VERSION = 132
# Variance created as sqlite has a bunch of undefined aggregate functions.

View File

@ -190,7 +190,7 @@ class Sql:
smallBet int,
bigBet int)"""
elif db_server == 'sqlite':
self.query['createGametypesTable'] = """CREATE TABLE GameTypes (
self.query['createGametypesTable'] = """CREATE TABLE Gametypes (
id INTEGER PRIMARY KEY,
siteId INTEGER,
currency TEXT,