seedthrower
DTDrizzle Team
•Created by seedthrower on 8/19/2023 in #help
Studio issue with ::
so - I figured out the issue - Supabase was automatically putting in the text - so what I was doing was creating the error.
Here's what I typed in:
(substr(md5((random())::text), 1, 10)
This worked fine in Supabase - but when Studio read the file - it got confused. Here's what made Studio happy:
(substr(md5((random())), 1, 10)
Essentially the same thing since Supabase automatically knew it was a text field - but it cleaned it up for Studio to read.
3 replies