sizuku 0.0.6 → 0.0.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -290,9 +290,9 @@ output:
|
|
|
290
290
|
|
|
291
291
|
```mermaid
|
|
292
292
|
erDiagram
|
|
293
|
-
user
|
|
294
|
-
post
|
|
295
|
-
user
|
|
293
|
+
user ||--}| post : "(id) - (userId)"
|
|
294
|
+
post ||--}| likes : "(id) - (postId)"
|
|
295
|
+
user ||--}| likes : "(id) - (userId)"
|
|
296
296
|
user {
|
|
297
297
|
varchar id "(PK) Unique identifier for the user."
|
|
298
298
|
varchar username "Username of the user."
|
package/package.json
CHANGED