Dumpling

Guides / When something already went wrong

Your Supabase project was paused. Here is what that means for your data.

Free Supabase projects are paused when they go quiet, and the first sign is usually an app that suddenly cannot connect. The data is not gone. Here is the exact situation and the order to do things in.

What happened

Supabase pauses a Free plan project that has not had enough database activity over the previous week. In its words, a few user requests to the database each day is usually enough to keep it active. Paid projects are never paused.

While paused, the database accepts no connections and the API returns errors. The storage volume is kept as it was. Nothing is deleted at this point.

You can restore a paused project yourself for up to one year after it was paused, from the project's page in the Supabase dashboard. After that window the project can no longer be restored in place; Supabase says a backup file of the project can be downloaded from the dashboard instead.

What to do right now

So it does not happen again

If the project matters, upgrade it; paid projects are not paused. If it is a side project you want to keep on the free plan, a scheduled backup does two things at once: the daily connection counts as database activity, and you hold a copy that restores anywhere if the project is paused, deleted or migrated.

Dumpling runs pg_dump against the session pooler on a schedule and streams the file into a bucket you own, then checks with pg_restore --list that it would actually restore. One database with daily backups is free. The setup is in the guide linked below and takes about fifteen minutes, most of it creating the bucket.

# restoring a Supabase dump anywhere
createdb restored_db
pg_restore --no-owner --no-acl -d restored_db supabase.dump
Keep a copy that survives the platform

Scheduled, verified dumps into a bucket you own. One database with daily backups is free, no card.

Sources

Provider facts checked on 2026-09-18. Policies change; the pages below are the authority.

Other situations