WIP for activity modeling and migration.

This commit is contained in:
2025-08-04 21:07:46 +03:00
parent 8a63ba1fee
commit 0bd01caf23
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
}
```