Add EvolutionTrack, EvolutionCardState, EvolutionTierBoost, and EvolutionCosmetic models to db_engine.py with composite unique indexes and create_tables blocks. Also includes PlayerSeasonStats (WP-02). Add ruff.toml to suppress pre-existing F403/F405 from intentional `from peewee import *` wildcard import pattern in db_engine.py. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
5 lines
229 B
TOML
5 lines
229 B
TOML
[lint]
|
|
# F403/F405: peewee ORM uses `from peewee import *` intentionally in db_engine.py
|
|
# These are suppressed per-file to avoid breaking the wildcard import pattern.
|
|
per-file-ignores = { "app/db_engine.py" = ["F403", "F405"] }
|