Skip to content
Snippets Groups Projects
Commit 4203aa11 authored by thomaswoehlke's avatar thomaswoehlke
Browse files

### 0.0.7 Release

* Issue #8 WhoServiceUpdate.update_db_short()
* Issue #9 URL: /who/update/short
* Issue #10 async who_update_short_task
* Issue #11 WhoServiceUpdate.__update_who_global_data_short()
* Fixed #12 better layout for flash messages
parent 8198140e
No related branches found
No related tags found
No related merge requests found
...@@ -144,11 +144,11 @@ class WhoGlobalData(db.Model): ...@@ -144,11 +144,11 @@ class WhoGlobalData(db.Model):
deaths_new = db.Column(db.Integer, nullable=False) deaths_new = db.Column(db.Integer, nullable=False)
deaths_cumulative = db.Column(db.Integer, nullable=False) deaths_cumulative = db.Column(db.Integer, nullable=False)
who_date_reported_id = db.Column(db.Integer, db.ForeignKey('who_date_reported.id'), nullable=False) date_reported_id = db.Column(db.Integer, db.ForeignKey('who_date_reported.id'), nullable=False)
who_date_reported = db.relationship('WhoDateReported', lazy='joined') date_reported = db.relationship('WhoDateReported', lazy='joined')
who_country_id = db.Column(db.Integer, db.ForeignKey('who_country.id'), nullable=False) country_id = db.Column(db.Integer, db.ForeignKey('who_country.id'), nullable=False)
who_country = db.relationship('WhoCountry', lazy='joined') country = db.relationship('WhoCountry', lazy='joined')
@classmethod @classmethod
def remove_all(cls): def remove_all(cls):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment