schema.hx 552 B

123456789101112131415161718192021222324252627282930313233
  1. N::Cluster {
  2. region: String,
  3. created_at: Date DEFAULT NOW,
  4. updated_at: Date DEFAULT NOW,
  5. }
  6. N::Instance {
  7. region: String,
  8. instance_type: String,
  9. storage_gb: I64,
  10. ram_gb: I64,
  11. created_at: Date DEFAULT NOW,
  12. updated_at: Date DEFAULT NOW,
  13. }
  14. N::User {
  15. INDEX gh_id: U64,
  16. gh_login: String,
  17. name: String,
  18. email: String,
  19. created_at: Date DEFAULT NOW,
  20. updated_at: Date DEFAULT NOW,
  21. }
  22. E::CreatedCluster {
  23. From: User,
  24. To: Cluster,
  25. }
  26. E::CreatedInstance {
  27. From: Cluster,
  28. To: Instance,
  29. }