> can anyone please explain what the difference...
# orm-help
p
can anyone please explain what the differences b/w
@@index([tags])
@@index([level])
vs
> @@index([tags, level])
??????
n
Hey 👋 Assuming that tags and level are column names,
@@index([tags])
and
@@index([level])
would define a single-column index, while
@@index([tags, level])
would define a multi-column index.
p
Thank you!!!
👍 1