During importing from PostgreSQL table definitions, dbdiagrams doesn’t cleanup quatation marks from table and column names. Shown as below:
Table "roles" {
"id" serial [pk, increment]
"created_at" timestamp(3) [not null, default: `CURRENT_TIMESTAMP`]
"updated_at" timestamp(3) [not null]
"status" user_accounts.status [not null, default: `'active'::user_accounts.status`]
"name" text [not null]
"description" text [not null]
}