# postgres ## Tables | Name | Columns | Comment | Type | | ---- | ------- | ------- | ---- | | [app.users](app.users.md) | 6 | | BASE TABLE | | [app.tags](app.tags.md) | 2 | | BASE TABLE | | [app.articles](app.articles.md) | 12 | | BASE TABLE | | [app.articles_tags](app.articles_tags.md) | 2 | | BASE TABLE | ## Relations ```mermaid erDiagram "app.articles" }o--|| "app.users" : "Additional Relation" "app.articles_tags" }o--|| "app.articles" : "Additional Relation" "app.articles_tags" }o--|| "app.tags" : "Additional Relation" "app.users" { uuid user_id } "app.tags" { uuid tag_id } "app.articles" { uuid article_id uuid user_id } "app.articles_tags" { uuid article_id uuid tag_id } ``` --- > Generated by [tbls](https://github.com/k1LoW/tbls)