feat: Implement currency management with models, routes, and UI updates; add backfill script for existing records

This commit is contained in:
2025-10-21 10:33:08 +02:00
parent fcea39deb0
commit 672cafa5b9
14 changed files with 478 additions and 10 deletions

5
models/__init__.py Normal file
View File

@@ -0,0 +1,5 @@
"""
models package initializer. Import the currency model so it's registered
with the shared Base.metadata when the package is imported by tests.
"""
from . import currency # noqa: F401