Skip to content

Instantly share code, notes, and snippets.

@AlexDev404
Created November 12, 2025 19:20
Show Gist options
  • Select an option

  • Save AlexDev404/17e9ae7eb16a14e287653e9a119be610 to your computer and use it in GitHub Desktop.

Select an option

Save AlexDev404/17e9ae7eb16a14e287653e9a119be610 to your computer and use it in GitHub Desktop.
Soil Moisture Quality Monitor
// Soil Moisture Quality Monitor
Table Users {
user_id serial [pk]
username string
password string
}
Table Nodes {
device_id serial [pk]
status enum
}
Table NodeData {
user_id serial
device_id serial
moisture_content float
timestamp timestamp
}
Table NodeFavorites {
user_id serial
device_id serial
}
Ref:
NodeData.device_id > Nodes.device_id
Ref:
NodeData.user_id > Users.user_id
Ref:
NodeFavorites.user_id > Users.user_id
Ref:
NodeFavorites.device_id > Nodes.device_id
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment