heh guys some question about psql database modelli...
# orm-help
t
heh guys some question about psql database modelling should i mix private and public info in one table, or one table for public info, one table for private info? let say i have a user, with name as public info and email as private info(edited)
Copy code
User table
name 
email
or
Copy code
User Table
email

Profile table
nanme
s
I prefer separating them. In Europe, with GDPR compliance being a big thing, it helps segregating data. Also only fetch profile information if required, or fetch a tiny subset of it
plus one +1 1