Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(870)

Unified Diff: frontend/tko/models.py

Issue 1595019: Merge remote branch 'origin/upstream' into tempbranch (Closed)
Patch Set: Created 10 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « frontend/planner/support.py ('k') | server/profilers.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: frontend/tko/models.py
diff --git a/frontend/tko/models.py b/frontend/tko/models.py
index 9c687779ed8e74978a4f6af2e221a421f268d3bc..483eb1352a8428cedc048310ea5a8490634210fd 100644
--- a/frontend/tko/models.py
+++ b/frontend/tko/models.py
@@ -233,8 +233,7 @@ class IterationResult(dbmodels.Model, model_logic.ModelExtensions):
test = dbmodels.ForeignKey(Test, db_column='test_idx', primary_key=True)
iteration = dbmodels.IntegerField()
attribute = dbmodels.CharField(max_length=90)
- value = dbmodels.DecimalField(null=True, max_digits=12, decimal_places=31,
- blank=True)
+ value = dbmodels.FloatField(null=True, blank=True)
objects = model_logic.ExtendedManager()
« no previous file with comments | « frontend/planner/support.py ('k') | server/profilers.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698