feat(models): tables MeteoStation + MeteoOpenMeteo (SQLModel)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-22 14:34:20 +01:00
parent 29e2f18e98
commit 17d2c5ac18
2 changed files with 43 additions and 1 deletions

View File

@@ -1,5 +1,11 @@
from app.models.garden import Garden, GardenCell, GardenImage, Measurement # noqa
from app.models.plant import PlantVariety, PlantImage # noqa
from app.models.plant import Plant, PlantImage # noqa
from app.models.planting import Planting, PlantingEvent # noqa
from app.models.task import Task # noqa
from app.models.settings import UserSettings, LunarCalendarEntry # noqa
from app.models.tool import Tool # noqa
from app.models.media import Media, Attachment # noqa
from app.models.dicton import Dicton # noqa
from app.models.astuce import Astuce # noqa
from app.models.recolte import Recolte, Observation # noqa
from app.models.meteo import MeteoStation, MeteoOpenMeteo # noqa