summaryrefslogtreecommitdiff
path: root/api/models.py
diff options
context:
space:
mode:
authorLuiz Gustavo Monteiro <116690851+luizgustavomonteiro@users.noreply.github.com>2025-11-01 09:22:33 -0300
committerGitHub <noreply@github.com>2025-11-01 09:22:33 -0300
commitc3a884f12c1d7b6bc286e14bf0f8af2d99dad542 (patch)
tree70e25f610ab41d8028114fd167b0c2ef51e34a1a /api/models.py
parent032a77c0b1a2e0e2c247f511c0dc6d2555e691fb (diff)
parentd24056dfa246d6ecf67447fa65eb0cdd67942df3 (diff)
Merge pull request #1 from Simplesmente-O-Grupo/timestamp-db
Adicionado campos no banco de dados
Diffstat (limited to 'api/models.py')
-rw-r--r--api/models.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/api/models.py b/api/models.py
index d6bd2ba..98549bc 100644
--- a/api/models.py
+++ b/api/models.py
@@ -60,6 +60,7 @@ class Measure(Base):
id = Column(Integer, primary_key=True, index=True)
name = Column(String(50), nullable=True, index=True)
+ unit_code = Column(String(10), nullable=True)
# Relationships
readings = relationship("Reading", back_populates="measure")
@@ -75,6 +76,7 @@ class Reading(Base):
sensor_device_id = Column(Integer, ForeignKey("sensor_devices.id"), nullable=True, index=True)
measure_id = Column(Integer, ForeignKey("measures.id"), nullable=True, index=True)
value = Column(Float, nullable=True)
+ time = Column(DateTime, nullable=True)
# Relationships
sensor_device = relationship("SensorDevice", back_populates="readings")