From f4469b7e1ed7aaf0b4d9aab9b8eb0160d823b3a0 Mon Sep 17 00:00:00 2001 From: thomaswoehlke <thomas.woehlke@gmail.com> Date: Tue, 9 Feb 2021 10:58:51 +0100 Subject: [PATCH] work --- docs/blueprints/who/useCases.txt | 18 ++++++++++++++++++ .../vaccination/vaccination_service.py | 1 + 2 files changed, 19 insertions(+) create mode 100644 docs/blueprints/who/useCases.txt diff --git a/docs/blueprints/who/useCases.txt b/docs/blueprints/who/useCases.txt new file mode 100644 index 00000000..4b267021 --- /dev/null +++ b/docs/blueprints/who/useCases.txt @@ -0,0 +1,18 @@ +@startuml +left to right direction +actor Guest as g +package Professional { + actor Chef as c + actor "Food Critic" as fc +} +package Restaurant { + usecase "Eat Food" as UC1 + usecase "Pay for Food" as UC2 + usecase "Drink" as UC3 + usecase "Review" as UC4 +} +fc --> UC4 +g --> UC1 +g --> UC2 +g --> UC3 +@enduml \ No newline at end of file diff --git a/src/covid19/blueprints/vaccination/vaccination_service.py b/src/covid19/blueprints/vaccination/vaccination_service.py index 43b94c35..8377f431 100644 --- a/src/covid19/blueprints/vaccination/vaccination_service.py +++ b/src/covid19/blueprints/vaccination/vaccination_service.py @@ -28,6 +28,7 @@ class VaccinationService: def task_database_drop_create(self): self.vaccination_service_import.import_file() + self.vaccination_service_udpate.update_star_schema_initial() return self def run_download_only(self): -- GitLab