DB Model changes to prepare for Tourney Summary import
modified: Database.py * fillDefaultData : queries that inserts the default line into TourneyTypes rewritten (simplified to take into account the columns that have "new" DEFAULT attribute) modified: SQL.py * createTourneyTypesTable query modified : some existing columns are now created with a default values, new columns added * createTourneysTable query modified : new columns added * createTourneysPlayersTable query modified : new columns added
This commit is contained in:
parent
b85f8ec155
commit
0217e2320c
|
@ -964,12 +964,10 @@ class Database:
|
||||||
c.execute("INSERT INTO Sites (name,currency) VALUES ('Absolute', 'USD')")
|
c.execute("INSERT INTO Sites (name,currency) VALUES ('Absolute', 'USD')")
|
||||||
c.execute("INSERT INTO Sites (name,currency) VALUES ('PartyPoker', 'USD')")
|
c.execute("INSERT INTO Sites (name,currency) VALUES ('PartyPoker', 'USD')")
|
||||||
if self.backend == self.SQLITE:
|
if self.backend == self.SQLITE:
|
||||||
c.execute("INSERT INTO TourneyTypes VALUES (NULL, 1, 0, 0, 0, 0);")
|
c.execute("INSERT INTO TourneyTypes (id, siteId, buyin, fee) VALUES (NULL, 1, 0, 0);")
|
||||||
else:
|
else:
|
||||||
c.execute("INSERT INTO TourneyTypes VALUES (DEFAULT, 1, 0, 0, 0, False);")
|
c.execute("INSERT INTO TourneyTypes (siteId, buyin, fee) VALUES (1, 0, 0);")
|
||||||
#c.execute("""INSERT INTO TourneyTypes
|
|
||||||
# (siteId,buyin,fee,knockout,rebuyOrAddon) VALUES
|
|
||||||
# (1,0,0,0,?)""",(False,) )
|
|
||||||
#end def fillDefaultData
|
#end def fillDefaultData
|
||||||
|
|
||||||
def rebuild_hudcache(self):
|
def rebuild_hudcache(self):
|
||||||
|
|
|
@ -325,8 +325,14 @@ class Sql:
|
||||||
siteId SMALLINT UNSIGNED NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id),
|
siteId SMALLINT UNSIGNED NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id),
|
||||||
buyin INT NOT NULL,
|
buyin INT NOT NULL,
|
||||||
fee INT NOT NULL,
|
fee INT NOT NULL,
|
||||||
knockout INT NOT NULL,
|
maxSeats INT NOT NULL DEFAULT -1,
|
||||||
rebuyOrAddon BOOLEAN NOT NULL)
|
knockout BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
rebuyOrAddon BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
speed varchar(10),
|
||||||
|
headsUp BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
shootout BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
matrix BOOLEAN NOT NULL DEFAULT False
|
||||||
|
)
|
||||||
ENGINE=INNODB"""
|
ENGINE=INNODB"""
|
||||||
elif db_server == 'postgresql':
|
elif db_server == 'postgresql':
|
||||||
self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes (
|
self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes (
|
||||||
|
@ -334,16 +340,28 @@ class Sql:
|
||||||
siteId INT NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id),
|
siteId INT NOT NULL, FOREIGN KEY (siteId) REFERENCES Sites(id),
|
||||||
buyin INT NOT NULL,
|
buyin INT NOT NULL,
|
||||||
fee INT NOT NULL,
|
fee INT NOT NULL,
|
||||||
knockout INT NOT NULL,
|
maxSeats INT NOT NULL DEFAULT -1,
|
||||||
rebuyOrAddon BOOLEAN NOT NULL)"""
|
knockout BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
rebuyOrAddon BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
speed varchar(10),
|
||||||
|
headsUp BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
shootout BOOLEAN NOT NULL DEFAULT False,
|
||||||
|
matrix BOOLEAN NOT NULL DEFAULT False
|
||||||
|
)"""
|
||||||
elif db_server == 'sqlite':
|
elif db_server == 'sqlite':
|
||||||
self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes (
|
self.query['createTourneyTypesTable'] = """CREATE TABLE TourneyTypes (
|
||||||
id INTEGER PRIMARY KEY,
|
id INTEGER PRIMARY KEY,
|
||||||
siteId INT NOT NULL,
|
siteId INT NOT NULL,
|
||||||
buyin INT NOT NULL,
|
buyin INT NOT NULL,
|
||||||
fee INT NOT NULL,
|
fee INT NOT NULL,
|
||||||
knockout INT NOT NULL,
|
maxSeats INT NOT NULL DEFAULT -1,
|
||||||
rebuyOrAddon BOOLEAN NOT NULL)"""
|
knockout BOOLEAN NOT NULL DEFAULT 0,
|
||||||
|
rebuyOrAddon BOOLEAN NOT NULL DEFAULT 0,
|
||||||
|
speed TEXT,
|
||||||
|
headsUp BOOLEAN NOT NULL DEFAULT 0,
|
||||||
|
shootout BOOLEAN NOT NULL DEFAULT 0,
|
||||||
|
matrix BOOLEAN NOT NULL DEFAULT 0
|
||||||
|
)"""
|
||||||
|
|
||||||
################################
|
################################
|
||||||
# Create Tourneys
|
# Create Tourneys
|
||||||
|
@ -357,6 +375,17 @@ class Sql:
|
||||||
entries INT NOT NULL,
|
entries INT NOT NULL,
|
||||||
prizepool INT NOT NULL,
|
prizepool INT NOT NULL,
|
||||||
startTime DATETIME NOT NULL,
|
startTime DATETIME NOT NULL,
|
||||||
|
endTime DATETIME,
|
||||||
|
buyinChips INT,
|
||||||
|
tourneyName varchar(20),
|
||||||
|
matrixIdProcessed TINYINT UNSIGNED DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */
|
||||||
|
rebuyChips INT DEFAULT 0,
|
||||||
|
addonChips INT DEFAULT 0,
|
||||||
|
rebuyAmount INT DEFAULT 0,
|
||||||
|
addonAmount INT DEFAULT 0,
|
||||||
|
totalRebuys INT DEFAULT 0,
|
||||||
|
totalAddons INT DEFAULT 0,
|
||||||
|
koBounty INT DEFAULT 0,
|
||||||
comment TEXT,
|
comment TEXT,
|
||||||
commentTs DATETIME)
|
commentTs DATETIME)
|
||||||
ENGINE=INNODB"""
|
ENGINE=INNODB"""
|
||||||
|
@ -368,6 +397,17 @@ class Sql:
|
||||||
entries INT,
|
entries INT,
|
||||||
prizepool INT,
|
prizepool INT,
|
||||||
startTime timestamp without time zone,
|
startTime timestamp without time zone,
|
||||||
|
endTime timestamp without time zone,
|
||||||
|
buyinChips INT,
|
||||||
|
tourneyName varchar(20),
|
||||||
|
matrixIdProcessed SMALLINT UNSIGNED DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */
|
||||||
|
rebuyChips INT DEFAULT 0,
|
||||||
|
addonChips INT DEFAULT 0,
|
||||||
|
rebuyAmount INT DEFAULT 0,
|
||||||
|
addonAmount INT DEFAULT 0,
|
||||||
|
totalRebuys INT DEFAULT 0,
|
||||||
|
totalAddons INT DEFAULT 0,
|
||||||
|
koBounty INT DEFAULT 0,
|
||||||
comment TEXT,
|
comment TEXT,
|
||||||
commentTs timestamp without time zone)"""
|
commentTs timestamp without time zone)"""
|
||||||
elif db_server == 'sqlite':
|
elif db_server == 'sqlite':
|
||||||
|
@ -378,6 +418,17 @@ class Sql:
|
||||||
entries INT,
|
entries INT,
|
||||||
prizepool INT,
|
prizepool INT,
|
||||||
startTime REAL,
|
startTime REAL,
|
||||||
|
endTime REAL,
|
||||||
|
buyinChips INT,
|
||||||
|
tourneyName TEXT,
|
||||||
|
matrixIdProcessed INT UNSIGNED DEFAULT 0, /* Mask use : 1=Positionnal Winnings|2=Match1|4=Match2|...|pow(2,n)=Matchn */
|
||||||
|
rebuyChips INT DEFAULT 0,
|
||||||
|
addonChips INT DEFAULT 0,
|
||||||
|
rebuyAmount INT DEFAULT 0,
|
||||||
|
addonAmount INT DEFAULT 0,
|
||||||
|
totalRebuys INT DEFAULT 0,
|
||||||
|
totalAddons INT DEFAULT 0,
|
||||||
|
koBounty INT DEFAULT 0,
|
||||||
comment TEXT,
|
comment TEXT,
|
||||||
commentTs REAL)"""
|
commentTs REAL)"""
|
||||||
################################
|
################################
|
||||||
|
@ -749,6 +800,9 @@ class Sql:
|
||||||
payinAmount INT NOT NULL,
|
payinAmount INT NOT NULL,
|
||||||
rank INT NOT NULL,
|
rank INT NOT NULL,
|
||||||
winnings INT NOT NULL,
|
winnings INT NOT NULL,
|
||||||
|
nbRebuys INT DEFAULT 0,
|
||||||
|
nbAddons INT DEFAULT 0,
|
||||||
|
nbKO INT DEFAULT 0,
|
||||||
comment TEXT,
|
comment TEXT,
|
||||||
commentTs DATETIME)
|
commentTs DATETIME)
|
||||||
ENGINE=INNODB"""
|
ENGINE=INNODB"""
|
||||||
|
@ -760,6 +814,9 @@ class Sql:
|
||||||
payinAmount INT,
|
payinAmount INT,
|
||||||
rank INT,
|
rank INT,
|
||||||
winnings INT,
|
winnings INT,
|
||||||
|
nbRebuys INT DEFAULT 0,
|
||||||
|
nbAddons INT DEFAULT 0,
|
||||||
|
nbKO INT DEFAULT 0,
|
||||||
comment TEXT,
|
comment TEXT,
|
||||||
commentTs timestamp without time zone)"""
|
commentTs timestamp without time zone)"""
|
||||||
elif db_server == 'sqlite':
|
elif db_server == 'sqlite':
|
||||||
|
|
Loading…
Reference in New Issue
Block a user