I am modeling a database for use on the softball league website. I am not so good at DB Modeling, and it is difficult for me to ask about the future.
Now I have the following tables:
players table (player_id, name, gender, email address, team_id)
team table (team_id, name, captain [player_id], logo, wins_Regular_season, loss_regular_season)
regular_season table (game_id, week, date, home [team_id], away [team_id], home_score, away_score, rain_date)
playoff table (pgame_id, date, home [team_id], away [team_id], home_score, away_score, winnerTo [pgame_id], loserTo [pgame_id])
In order for data to be saved from season to season, but also have an easy way to access the data, I have to:
A) Include the year column in the tables and then filter my queries by year? B) create new tables every year? C) Do something else that makes more sense, but I can't come up with.