Supabase

S

Supabase

Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.

Join

Log in to user account as support agent?

Some users report issues with not seeing records, is there some sort of admin code I have to knock to log in? When I was doing logins through my own system I had a rotating support login key but now that i do it via supabase oauth what can I do?

Does createSignedUrl() count toward Cached Egress with Smart CDN enabled?

The docs say "Smart CDN caching works with all types of storage operations including signed URLs." https://supabase.com/docs/guides/storage/cdn/smart-cdn Does this mean the createSignedUrl() API call itself is cached and doesn't count toward egress? Or does it only cache the file downloads accessed via those signed URLs?...

where are RPC functions logs?

Sometimes, my RPC function throws/raises an exception. To debug the exception, I want to see the log of the exceptions. I already checked the Logs page, but I couldn't find RPC logs there. Where are the RPC functions logs stored?...

Re-activating Stucked project

“My free-tier database has been stuck in ‘Restoring’ state for more than 48 hours. Please help resume or recover it.”
No description

Opening Bucket in Supabase Studio fails due to "New row violates row level security"

Hi, I have the issue that when opening a bucket in Supabase Studio I get the error "Failed to retrieve folder contents from "public": new row violates row-level security policy, and no files appear. That is curious because of two facts: - It only happens on the staging project, which has exactly the same RLS policies as production, where no error occurs....

Permission denied to schema public (403 error)

I'm new to supabase and I'm using Firebase Studio for this all Can someone tell me what to do?? Even google gemini failed to answer...
No description

Unable to create new project after deleting and recreating an organization (Stuck on "Project creati

Hello, I'm currently blocked from creating a new Supabase project and I believe it's due to a recent action related to my organization/account. The Situation...
No description

[N8N] False positive in INSERT

Hello everyone, this is my first help post here, I hope you can help me. Context: I have a free account on the platform, which is already pretty good to use. ...
No description

SupaBase could not retrieve document information.

When I connect my N8N to Supabase, the agent is able to find the document's name but could not retrieve the document content. Instead, it says it's unable to extract the file. Can anyone help?
No description

Getting blocked by Cloudflare WAF

Hi! We are currently using Supabase Edge Function which spins up every 10 seconds and process things from our queue. We are currently running into this problem when sending things to the Supabase Queue. ```...

404 on deployed Edge Function despite successful deployment

Hey Supabase team 👋
I'm having trouble with my Edge Function used to send emails after a booking is completed.
The function deploys successfully, but when I invoke it, it returns a 404 (FunctionsHttpError). ...
No description

DB upgrade time

Hey, I started db upgrade, it has been around 24 hours and it is still going. My db size was very small but had a a lot of edge functions and views. Is this normal?...

Question about using native PostgreSQL roles with Supabase Auth

I'm currently working on a multi-organization project and would like to better understand how native PostgreSQL roles interact with Supabase Auth. As I understand it, Supabase uses the anon and authenticated roles to manage database access, and permissions are typically handled through RLS policies. However, I’m exploring whether it’s possible to assign native PostgreSQL roles (e.g., admin, teacher, student) directly to users created through Supabase Auth — so that those roles could leverage PostgreSQL’s built-in GRANT system and role inheritance, instead of replicating role logic at the application or RLS level. ...

Database still offline after 24 hrs.

Hey again everyone. I know I'm being a bit repetitive but I just don't know what to do at this point. I have tried contacting support and all I've gotten is that it's been forwarded to another person in this server already said happened. I tried making another project just to test it and that came out perfectly, no issues with it while my actual project is still in a pausing loop. Do I upgrade to the pro plan just to get the support? Or is that probably no good? I'm not even in any of the affect...
No description

Communication between databases

I have two mobile apps that I want to create. One is a staff-focused mobile app for users to upload photos and tags on those photos (think instagram). These staff users are essentially creating a home page for their business so that their customers can interact with these photos and tags. The customer users will have their own app where they can find the home page created by the staff, open the photos, and interact with the tags uploaded by staff. I want to have two databases communicating with eachother. Once where the staff profiles are saved, and the images and tags are saved. The other database will save customer profiles, and the interactions with the images and tags....

How do we preview changes applyed by supabase config push

In my prior job, I used to use terraform's plan / apply model in order to verify changes before actually pushing them to a production environment (and get a nice diff) I would love to be able to setup a review loop for folks making changes to the config.toml Is there an equivalent for the config.toml config push command?...

Preview branch not being made?

Hey all, not sure why this is occuring but I made a preview (and then persistent after 30 min) to try and make some new columns for feature testing on my app. It's been over 12 hours and the tables have not been duplicated, and status just says "Waiting for run to start" as seen below. Any ideas? Just want a duplicate of my prod branch with no data in the tables
No description

New API Key with Legacy JWT on mobile migration

Hello! We’re upgrading our production iOS app from legacy anon keys to the new sb publishable key. We don’t plan to migrate to JWT signing keys yet. Can you confirm that: 1. existing user JWTs remain valid and users won’t be logged out, and can use the app to sign in / sign up with it 2. both old (legacy anon) and new (publishable sb) keys can coexist so that older app builds continue to work until we disable legacy keys?...

uuid is not getting added

```js const { data, error } = await supabase.from("works").insert([ { title, description,...
No description

List triggers and their content

Is there a way to edit/list triggers and their content? I've created one by using SQL as the UI is a bit limited ```sql CREATE TRIGGER trigger_apply_discount AFTER UPDATE OF used, used_by_order ON discount_codes FOR EACH ROW...