Skip to content
Snippets Groups Projects
Commit 9c181ecc authored by thomaswoehlke's avatar thomaswoehlke
Browse files

work

parent 185cf44c
No related branches found
No related tags found
2 merge requests!161Issue 66 attempt 01,!160Issue 66 attempt 01
......@@ -17,7 +17,7 @@ class RkiGermanyDataImportTable(db.Model):
@classmethod
def remove_all(cls):
for one in cls.get_all():
db.session.delete(one).cascade()
db.session.delete(one)
db.session.commit()
return None
......
......@@ -30,7 +30,7 @@ class VaccinationGermanyTimeline(db.Model):
@classmethod
def remove_all(cls):
for one in cls.get_all():
db.session.delete(one).cascade()
db.session.delete(one)
db.session.commit()
return None
......
......@@ -44,12 +44,13 @@ class WhoCountry(db.Model):
region = db.relationship(
'WhoRegion',
lazy='joined',
cascade='all, delete',
order_by='WhoRegion.region')
@classmethod
def remove_all(cls):
for one in cls.get_all():
db.session.delete(one).cascade()
db.session.delete(one)
db.session.commit()
return None
......@@ -138,18 +139,20 @@ class WhoGlobalData(db.Model):
date_reported = db.relationship(
'WhoDateReported',
lazy='joined',
cascade='all, delete',
order_by='desc(WhoDateReported.date_reported)')
country_id = db.Column(db.Integer,
db.ForeignKey('who_country.id'), nullable=False)
country = db.relationship(
'WhoCountry',
lazy='joined',
cascade='all, delete',
order_by='asc(WhoCountry.country)')
@classmethod
def remove_all(cls):
# TODO: SQLalchemy instead of SQL
db.session.execute("delete from " + cls.__tablename__)
for one in cls.get_all():
db.session.delete(one)
db.session.commit()
return None
......
......@@ -17,7 +17,7 @@ class WhoGlobalDataImportTable(db.Model):
@classmethod
def remove_all(cls):
for one in cls.get_all():
db.session.delete(one).cascade()
db.session.delete(one)
db.session.commit()
return None
......
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