@@ -69,12 +69,13 @@ def setupDB():
""")
cursor.execute("""create index pp_pin on players_performance (pin)""")
cursor.execute("""create index pp_tournament_code on players_performance (tournament_code)""")
cursor.execute("""create index pp_country_ind on players_performance (country_code)""")
cursor.execute("""create index t_datum_ind on tournaments (datum)""")
cursor.execute("""create index p_name_ind on players (name)""")
connection.commit()
def fillDB(tournaments,players):
cursor=connection.cursor()
Status change: