diff --git a/.history/API/docs/diagram_20230509113640.wsd b/.history/API/docs/diagram_20230509113640.wsd new file mode 100644 index 0000000..65c7230 --- /dev/null +++ b/.history/API/docs/diagram_20230509113640.wsd @@ -0,0 +1,29 @@ +@startuml diagram +class users { + id: text + username: text + email: email + name: text + image: file + created: date + updated: date +} +class trashs{ + id: text + value: text + author: users + created: date + updated: date +} +class data { + id: text + value: number + poubelle_id: trashs + unit: text + status: bool + created: date + updated: date +} +users "1" <-- trashs +trashs "1" <-- data +@enduml \ No newline at end of file diff --git a/.history/API/docs/diagram_20230509114833.wsd b/.history/API/docs/diagram_20230509114833.wsd new file mode 100644 index 0000000..070c03d --- /dev/null +++ b/.history/API/docs/diagram_20230509114833.wsd @@ -0,0 +1,29 @@ +@startuml diagram +class users { + id: text + username: text + email: email + name: text + image: file + created: date + updated: date +} +class trashs{ + id: text + value: text + author: users + created: date + updated: date +} +class data { + id: text + value: number + trashs_id: trashs + unit: text + status: bool + created: date + updated: date +} +users "1" <-- trashs +trashs "1" <-- data +@enduml \ No newline at end of file diff --git a/.history/API/docs/diagram_20230509115151.wsd b/.history/API/docs/diagram_20230509115151.wsd new file mode 100644 index 0000000..d514ebe --- /dev/null +++ b/.history/API/docs/diagram_20230509115151.wsd @@ -0,0 +1,29 @@ +@startuml diagram +class users { + id: text + username: text + email: email + name: text + image: file + created: date + updated: date +} +class trashs{ + id: text + owner: users + number: text + created: date + updated: date +} +class data { + id: text + value: number + trashs_id: trashs + unit: text + status: bool + created: date + updated: date +} +users "1" <-- trashs +trashs "1" <-- data +@enduml \ No newline at end of file diff --git a/.history/API/docs/diagram_20230509115316.wsd b/.history/API/docs/diagram_20230509115316.wsd new file mode 100644 index 0000000..fe6b5cc --- /dev/null +++ b/.history/API/docs/diagram_20230509115316.wsd @@ -0,0 +1,29 @@ +@startuml diagram +class users { + id: text + username: text + email: email + name: text + image: file + created: date + updated: date +} +class trashs{ + id: text + owner: users + number: text + created: date + updated: date +} +class data { + id: text + trashs_id: trashs + unit: text + status: bool + value: number + created: date + updated: date +} +users "1" <-- trashs +trashs "1" <-- data +@enduml \ No newline at end of file diff --git a/API/docs/diagram.wsd b/API/docs/diagram.wsd index 65c7230..fe6b5cc 100644 --- a/API/docs/diagram.wsd +++ b/API/docs/diagram.wsd @@ -10,17 +10,17 @@ class users { } class trashs{ id: text - value: text - author: users + owner: users + number: text created: date updated: date } class data { id: text - value: number - poubelle_id: trashs + trashs_id: trashs unit: text status: bool + value: number created: date updated: date }