Is it possible to draw a relationship between table names?

Is it possible to somehow draw a line between between two table names? For example

Table users as U {
id int [pk, increment] // auto-increment
full_name varchar
created_at timestamp
country_code int
}

Table countries {
code int [pk]
name varchar
continent_name varchar
}

Ref: users - countries

Hi @jjgg,

Currently we only support relationships between foreign keys (more here). If you want to group similar tables together, I suggest you check out our table group feature (more here).

Let me know if that helps.
Khanh