Skip to content

Latest commit

 

History

History
73 lines (62 loc) · 1.59 KB

db.md

File metadata and controls

73 lines (62 loc) · 1.59 KB

Структуруа базы данных

Пользователь

  'id_user': str,
  'login': str,
  'password': str

Игра

  'id_game': int,
  'id_user': int,
  'id_question': int,
  'time_open': timestamp,
  'time_close': timestamp,
  'time_close': timestamp,
  'round': int, # Номер раунда игры
  'Health': float,   # Здоровье
  'food': float,     # Питание
  'Leisure': float,  # Досуг
  'Communication': float,   # Общение
  'point': int, # количество очков
  'value': int, # количество денег

Вопросы

  'id_question': int,
  'description': text,
  'left': {
    'Health': float,   # Здоровье
    'food': float,     # Питание
    'Leisure': float,  # Досуг
    'Communication': float,   # Общение
    'point': int, # количество очков
    'value': int, # количество денег
  },
  'right': {
    'Health': float,   # Здоровье
    'food': float,     # Питание
    'Leisure': float,  # Досуг
    'Communication': float,   # Общение
    'point': int, # количество очков
    'value': int, # количество денег
  }

Персонажи

  'id_person': int,
  'name': str,
  'description': str, # описание персонажа
  'pic': str # ссылка на картинку

Сессии пользователей

  'id_user': int,
  'id_session': text

События

  'id_event': int,
  'description': text,
  'id_session': text