From 6ebbee2016b0232573ad1d322b4d4ca6287b3599 Mon Sep 17 00:00:00 2001 From: Karan Jayachandra Date: Mon, 2 Dec 2024 17:44:24 +0100 Subject: Added the guests with history and level --- src/match_up/data.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/match_up/data.py') 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() -- cgit v1.3.1