Quote:
Originally Posted by wellsoliver
About to move my league into its second season and I'm curious (afraid) of the mysql export - specifically the players_game_batting, players_game_pitching_stats, and team_record tables. Will these be reset and emptied of the last year's data, or appended to?
My guess is team_record will have to be reset as there is no date column...
|
All three get reset, although team_record information is stored in team_history_record for past seasons, so you don't lose that information. You just have to look elswhere for it. I think most of the other team tables work the same way.
e.g.
team_record -> team_history_record
team_batting_stats -> team_history_batting_stats
team_pitching_stats -> team_history_pitching_stats
...
Note that not all team tables have a corresponding history table