environment_sensors/sensors/collector/models.py
Andreas Zweili 1db53e1a42 move to django
I thought it might be a good idea to use Flask and Peewee for this little
project. However the overhead to learn this frameworks is bigger than I
thought. I therefore switch to django which is a framework I already know.
2019-10-13 19:35:48 +01:00

22 lines
451 B
Python

from django.db import models
# Create your models here.
class Time(models.Model):
value = DateTimeField()
class Temperatur(models.Model):
time = ForeignKeyField(Time, backref='temperatures')
value = FloatField()
class Humidity(models.Model):
time = ForeignKeyField(Time, backref='humidities')
value = FloatField()
class Pressure(models.Model):
time = ForeignKeyField(Time, backref='pressures')
value = FloatField()