Hey, Ive been trying to learn spicedb and create toy applications with it, I've a doubt when it comes to architecting your DB schema (SQL) vs SpiceDB
The question is essentially based on the fact that defining relationships in SpiceDB can sometimes feel similar to defining it as a Foreign Key (FK) in SQL
As an example
1. I have two tables, User and Organisation (like Github, where each user has a default organisation, and they can access other organisations also)
2. Now I can model this in SpiceDB or I can simply create a many to many relation between User and Organisation in my SQL database
How do you decide between these approaches?