DB: add TourneyTypes.rebuyFee and addOnFee

This commit is contained in:
steffen123 2010-07-14 01:49:55 +02:00
parent 35bb8a4490
commit 5cd78b608b
2 changed files with 7 additions and 1 deletions

View File

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

View File

@ -401,9 +401,11 @@ class Sql:
maxSeats INT, maxSeats INT,
rebuy BOOLEAN, rebuy BOOLEAN,
rebuyCost INT, rebuyCost INT,
rebuyFee INT,
rebuyChips INT, rebuyChips INT,
addOn BOOLEAN, addOn BOOLEAN,
addOnCost INT, addOnCost INT,
addOnFee INT,
addOnChips INT, addOnChips INT,
knockout BOOLEAN, knockout BOOLEAN,
koBounty INT, koBounty INT,
@ -428,9 +430,11 @@ class Sql:
maxSeats INT, maxSeats INT,
rebuy BOOLEAN, rebuy BOOLEAN,
rebuyCost INT, rebuyCost INT,
rebuyFee INT,
rebuyChips INT, rebuyChips INT,
addOn BOOLEAN, addOn BOOLEAN,
addOnCost INT, addOnCost INT,
addOnFee INT,
addOnChips INT, addOnChips INT,
knockout BOOLEAN, knockout BOOLEAN,
koBounty INT, koBounty INT,
@ -454,9 +458,11 @@ class Sql:
maxSeats INT, maxSeats INT,
rebuy BOOLEAN, rebuy BOOLEAN,
rebuyCost INT, rebuyCost INT,
rebuyFee INT,
rebuyChips INT, rebuyChips INT,
addOn BOOLEAN, addOn BOOLEAN,
addOnCost INT, addOnCost INT,
addOnFee INT,
addOnChips INT, addOnChips INT,
knockout BOOLEAN, knockout BOOLEAN,
koBounty INT, koBounty INT,