Commit 398eafb8d17049a544ace112d806a332959b827b

Authored by Goutte
1 parent d8886db8
Exists in master

Update the Estimation model.

Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
flaskr/models.py
... ... @@ -57,9 +57,9 @@ class Estimation(db.Model):
57 57 last_name = db.Column(db.Unicode(1024)) # Goutenoir
58 58 status = db.Column(db.Enum(StatusEnum))
59 59  
60   - # destination_address = db.Column(db.Unicode(1024))
61   -
62 60 # City, Country
63 61 # One address per line
64 62 origin_addresses = db.Column(db.Unicode())
65 63 destination_addresses = db.Column(db.Unicode())
  64 +
  65 + compute_optimal_destination = db.Column(db.Boolean())
... ...