From a9d8f2cc3dae35b4e005dfce920ddf60d4538411 Mon Sep 17 00:00:00 2001 From: rito528 <39003544+rito528@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:35:15 +0900 Subject: [PATCH 1/2] =?UTF-8?q?chore:=20AnswerModel=E3=81=AB=E4=B8=8D?= =?UTF-8?q?=E8=B6=B3=E3=81=97=E3=81=A6=E3=81=84=E3=82=8B=E3=83=91=E3=83=A9?= =?UTF-8?q?=E3=83=A1=E3=83=BC=E3=82=BF=E3=81=AE=E8=BF=BD=E5=8A=A0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- models/form.tsp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/models/form.tsp b/models/form.tsp index b23e531..e18a859 100644 --- a/models/form.tsp +++ b/models/form.tsp @@ -76,8 +76,10 @@ model RealAnswer { model Answer { @visibility("read") id: uint32; + user: User; form_id: uint32; + timestamp: utcDateTime; title: string; answers: RealAnswer[]; } From 49952a461d403d609055b4549d604ef73b7d7d47 Mon Sep 17 00:00:00 2001 From: rito528 <39003544+rito528@users.noreply.github.com> Date: Thu, 20 Jun 2024 17:36:21 +0900 Subject: [PATCH 2/2] style: apply format --- models/form.tsp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/models/form.tsp b/models/form.tsp index e18a859..322ec02 100644 --- a/models/form.tsp +++ b/models/form.tsp @@ -76,8 +76,8 @@ model RealAnswer { model Answer { @visibility("read") id: uint32; - user: User; + user: User; form_id: uint32; timestamp: utcDateTime; title: string;