Skip to content

Commit

Permalink
Add (commented out) spec rows to Metric table.
Browse files Browse the repository at this point in the history
  • Loading branch information
dougthor42 committed Feb 12, 2019
1 parent 7c61c0a commit 16bea6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/trendlines/orm.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ class Metric(InternalModel):
metric_id = IntegerField(primary_key=True)
name = CharField(max_length=120)
units = CharField(max_length=24, null=True)
upper_limit = FloatField(null=True)
lower_limit = FloatField(null=True)
# upper_limit = FloatField(null=True)
# lower_limit = FloatField(null=True)

def __repr__(self):
s = "<Metric: {id}, {name}, units={units}>"
Expand Down

0 comments on commit 16bea6f

Please sign in to comment.