docs(erd): change column names in access schema

`read` -> `view`
`write` -> `edit`
This commit is contained in:
Masahiko AMANO 2025-07-02 22:11:25 +03:00
parent 49fc1537b7
commit cc53b862e4

View File

@ -115,8 +115,8 @@ entity "access.files" as acl_f {
* user_id : smallint
* file_id : uuid
--
* read : boolean
* write : boolean
* view : boolean
* edit : boolean
}
acl_f::user_id }o--|| usr::id
@ -126,10 +126,10 @@ entity "access.tags" as acl_t {
* user_id : smallint
* tag_id : uuid
--
* read : boolean
* write : boolean
' * files_read : boolean
' * files_write : boolean
* view : boolean
* edit : boolean
' * files_view : boolean
' * files_edit : boolean
}
acl_t::user_id }o--|| usr::id
@ -139,10 +139,10 @@ entity "access.categories" as acl_c {
* user_id : smallint
* category_id : uuid
--
* read : boolean
* write : boolean
' * tags_read : boolean
' * tags_write : boolean
* view : boolean
* edit : boolean
' * tags_view : boolean
' * tags_edit : boolean
}
acl_c::user_id }o--|| usr::id
@ -152,10 +152,10 @@ entity "access.pools" as acl_p {
* user_id : smallint
* pool_id : uuid
--
* read : boolean
* write : boolean
' * files_read : boolean
' * files_write : boolean
* view : boolean
* edit : boolean
' * files_view : boolean
' * files_edit : boolean
}
acl_p::user_id }o--|| usr::id