We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
For a database we are going to use both a nosql database (redis.io) and a sql database (postgres).
redis.io
postgres
class User(model): number = IntgerField() # PrimaryKey name = CharField() alive = BooleanField() target = ForiegnKey(User) game = ForiegnKey(Game) class Game(model): name = CharField() # PrimaryKey
SHUFFLED_USERS:%game_name% => [list of user_numbers]