Hello.
I'm designing a database with three tables: user, game and (probably) register. I want to represent that a user can be registered on zero or more games.
I use table register to register a user in a game.
I also need to store the score of the user in a game.
My question is:
Can I add a column called score in table register? Is it a good design?
Thanks.