15 Replies
smae thing for me in the table editor
same
i think this happened due to the recent update?
likely
it's back
no testing :(
it's back
is it back really?
yes
i think there was an issue with the recent update
yep! i should start implementing auto backup just in case...
What is the best way to backup a database? The Point-in-Time backups are expensive. Is there any other way other than Supabase automatic daily backups?
You can use supabase cli https://supabase.com/docs/guides/platform/migrating-within-supabase/backup-restore
and setup a cron job on a server or in github actions to perform backups daily
@inder thank you! How’s this different from the Supabase automatic daily backups?
Here is difference between logical and physical backup. https://supabase.com/blog/postgresql-physical-logical-backups With supabase cli you're doing logical backup. And this is how supabase chooses which backup to perform based on your db size and plan https://supabase.com/docs/guides/platform/backups#types-of-backups
Great! Thank you very much for this!