From b4cd05e7b24877a3c387c4b3bee7d15067b1957e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jarno=20Kiesil=C3=A4inen?= Date: Thu, 7 Aug 2025 16:36:08 +0000 Subject: [PATCH] Updated datamodel picture in the readme MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Reviewed-on: https://git.naali.duckdns.org/jarno/vibing/pulls/6 Co-authored-by: Jarno Kiesiläinen Co-committed-by: Jarno Kiesiläinen --- README.md | 22 ++++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d1936ad..347ca59 100644 --- a/README.md +++ b/README.md @@ -5,10 +5,28 @@ ```mermaid classDiagram class Activity { + +Long id +String name +Location location - +Int priceRange + +Integer priceRange +List~String~ tags + +String description + +LocalDateTime createdAt + +LocalDateTime updatedAt } + + class Location { + +Long id + +String name + +String address + +String city + +String country + +String postalCode + +Double latitude + +Double longitude + +LocalDateTime createdAt + +LocalDateTime updatedAt + } + + Activity <-- Location : belongs to ``` -