Spaces:
Runtime error
Runtime error
File size: 325 Bytes
186b436 | 1 2 3 4 5 6 7 8 9 10 11 | """Создаёт пустую БД с таблицами."""
import sys
from pathlib import Path
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
from app.db.database import init_db, DB_PATH
print(f"Создаю БД: {DB_PATH}")
init_db()
print("✓ Готово. Таблица 'plates' создана.") |