We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 9ee319e + 61f5ec0 commit 70d4c67Copy full SHA for 70d4c67
src/webmon_app/reporting/dasmon/models.py
@@ -25,6 +25,7 @@ class StatusVariable(models.Model):
25
Table containing key-value pairs from the DASMON
26
"""
27
28
+ id = models.BigAutoField(primary_key=True)
29
instrument_id = models.ForeignKey(Instrument, on_delete=models.CASCADE)
30
key_id = models.ForeignKey(Parameter, on_delete=models.CASCADE)
31
value = models.CharField(max_length=128)
0 commit comments