schema.hx 457 B

12345678910111213141516171819202122232425262728293031
  1. N::User {
  2. name: String,
  3. age: U32,
  4. email: String,
  5. created_at: Date DEFAULT NOW,
  6. updated_at: Date DEFAULT NOW,
  7. }
  8. N::Post {
  9. content: String,
  10. created_at: Date DEFAULT NOW,
  11. updated_at: Date DEFAULT NOW,
  12. }
  13. E::Follows {
  14. From: User,
  15. To: User,
  16. Properties: {
  17. since: Date DEFAULT NOW,
  18. }
  19. }
  20. E::Created {
  21. From: User,
  22. To: Post,
  23. Properties: {
  24. created_at: Date DEFAULT NOW,
  25. }
  26. }