Commit 77a9e7400b34e49b99d910ebec7b456c1947b3f8

Authored by Antoine Goutenoir
1 parent 1bbf5d52
Exists in master

Pickling is overkiil. Let's Keep It Simple, Stupid.

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_pickle = db.Column(db.UnicodeText()) 42 + output_yaml = 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