atoti.tables.Tables.schema#
- property Tables.schema: object#
Schema of the tables represented as a Mermaid entity relationship diagram.
Each table is represented with 3 or 4 columns:
whether the column’s
default_value
isNone
(denoted with nullable) or notthe column
data_type
(optional) whether the column is part of the table
keys
(denoted with PK) or notthe column
name
Example
erDiagram "Table a" { _ String "foo" nullable int "bar" } "Table b" { _ int PK "bar" _ LocalDate "baz" } "Table c" { _ String PK "foo" _ double PK "xyz" } "Table d" { _ String PK "foo_d" _ double PK "xyz_d" nullable float "abc_d" } "Table a" }o--o| "Table b" : "`bar` == `bar`" "Table a" }o..o{ "Table c" : "`foo` == `foo`" "Table c" }o--|| "Table d" : "(`foo` == `foo_d`) & (`xyz` == `xyz_d`)"