WIP for activity modeling and migration.
Some checks failed
Backend CI / Run Maven Tests (pull_request) Failing after 4m32s

This commit is contained in:
2025-08-04 21:07:46 +03:00
parent 2a0d7fa1b8
commit 2e14ea06c9
16 changed files with 448 additions and 482 deletions

14
README.md Normal file
View File

@@ -0,0 +1,14 @@
# Vibing application
## Data model
```mermaid
classDiagram
class Activity {
+String name
+Location location
+Int priceRange
+List~String~ tags
}
```