ZipponDB/schema/test-3struct

22 lines
225 B
Plaintext

User (
name: str,
age: int,
email: str,
bday: date,
friends: []User,
)
Post (
text: str,
at: datetime,
from: User,
comments: []Comment,
)
Comment (
text: str,
at: datetime,
from: User,
of: Post,
)