Is it possible to change the name of the collection where I store the data? I have a Game model and currently save data like this:
const teamData = new Game({
id: id,
homeTeamName: hTeam,
awayTeamName: aTeam,
homeTeamGoals: homeTeamGoals,
awayTeamGoals: awayTeamGoals })
teamData.save()
It saves in the "Games" collection every time, but can I use the same model for different collections? For example, I have games from England, Germany, etc. Do I need a separate model for each country or can I specify the collection name when I use .save()?