29 lines
433 B
Plaintext
29 lines
433 B
Plaintext
@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 |