Implement user-specific question numbering and update database schema. Added triggers for automatic question numbering and adjustments upon deletion. Enhanced CRUD operations to manage user_question_number effectively.

This commit is contained in:
2025-09-06 18:35:12 +03:00
parent 50be010026
commit 596a2fa813
111 changed files with 16847 additions and 65 deletions

17
keyboards/__init__.py Normal file
View File

@@ -0,0 +1,17 @@
"""
Клавиатуры для бота
"""
from .inline import (
get_answer_keyboard,
get_admin_keyboard,
get_stats_keyboard
)
from .reply import get_main_keyboard
__all__ = [
'get_answer_keyboard',
'get_admin_keyboard',
'get_stats_keyboard',
'get_main_keyboard'
]