Can someone please explain to me the difference be...
# orm-help
t
Can someone please explain to me the difference between
Copy code
@relation(link: TABLE)
and
r
The one creates a join table (a new, third table) and the other links direct ..
If I remember correctly..
If you have
User
and
Profile
then with
TABLE
it should create a
UserProfile
table with 1 column for the
userId
and 1 column for the
profileId
. with
INLINE
it will put the
profileId
in the
User
table