diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2024-12-02 17:44:24 +0100 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2024-12-02 17:44:24 +0100 |
| commit | 6ebbee2016b0232573ad1d322b4d4ca6287b3599 (patch) | |
| tree | cc3276b56e97bc64434a51d7e9c3c89da2c082c9 /src/match_up/data.py | |
| parent | 7b8bbe6db3680af65c3701afbcd31ac1f61773af (diff) | |
Added the guests with history and level
Diffstat (limited to 'src/match_up/data.py')
| -rw-r--r-- | src/match_up/data.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/match_up/data.py b/src/match_up/data.py index 62aa5d8..636a5eb 100644 --- a/src/match_up/data.py +++ b/src/match_up/data.py @@ -6,6 +6,8 @@ from sqlalchemy.ext.declarative import declarative_base MIN_LEVEL = 1 MAX_LEVEL = 10 PLAYER_PER_COURT = 4 +GUEST_LEVELS = [1, 3, 5] +GUESTS_PER_LEVEL = 4 BASE = declarative_base() |
