synchron
09/06/2021, 3:17 PMScott P
09/06/2021, 3:28 PMgen_random_uuid()
(requires the pgCrypto extension to be installed and enabled) to generate a UUID that could then be shared.
Store that value in the database. When someone enters this ID to join the session, retrieve all records with that ID from the database.
Everything else would be dependant on your backend and front-end architecture, as well as what you're trying to achieve.synchron
09/06/2021, 3:30 PMScott P
09/08/2021, 4:32 PMfalse
prevents people from changing any rows in the table that it's applied to.
Likewise, an RLS select policy of true
would allow anyone to view any data in that table.synchron
09/09/2021, 7:26 AM