I want to add Users to my players field in the lobby but i dont know how. Every user should be in just one lobby.
User Model
class GeoUser(AbstractUser):
user_score = models.IntegerField(default=0)
email = models.EmailField(unique=True)
Lobby Model
class Lobby(models.Model):
lobby_code = models.CharField(
max_length=18, unique=True)
players = # here i want to add multiple users that should be in the lobby
Thanks in advance