Commit 6d7cf9c54e03cfd39a4dc9499ce505468ecfaecd

Authored by Antoine Goutenoir
1 parent 3f132a5a
Exists in master

Decide that output data will be pickled.

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
flaskr/models.py
@@ -39,7 +39,7 @@ class Estimation(db.Model): @@ -39,7 +39,7 @@ class Estimation(db.Model):
39 39
40 compute_optimal_destination = db.Column(db.Boolean()) 40 compute_optimal_destination = db.Column(db.Boolean())
41 41
42 - output_as_yaml = db.Column(db.UnicodeText()) 42 + output_pickle = db.Column(db.UnicodeText())
43 warnings = db.Column(db.UnicodeText()) 43 warnings = db.Column(db.UnicodeText())
44 errors = db.Column(db.UnicodeText()) 44 errors = db.Column(db.UnicodeText())
45 45