123456789101112131415161718192021222324252627282930313233 |
- N::Cluster {
- region: String,
- created_at: Date DEFAULT NOW,
- updated_at: Date DEFAULT NOW,
- }
- N::Instance {
- region: String,
- instance_type: String,
- storage_gb: I64,
- ram_gb: I64,
- created_at: Date DEFAULT NOW,
- updated_at: Date DEFAULT NOW,
- }
- N::User {
- INDEX gh_id: U64,
- gh_login: String,
- name: String,
- email: String,
- created_at: Date DEFAULT NOW,
- updated_at: Date DEFAULT NOW,
- }
- E::CreatedCluster {
- From: User,
- To: Cluster,
- }
- E::CreatedInstance {
- From: Cluster,
- To: Instance,
- }
|