Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions supabase_snapshot/backup_info.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
Supabase Backup Information
===========================
Backup Date: Tue Nov 25 08:39:29 IST 2025
Timestamp: 20251125_083659

Database Connection: postgresql://postgres:Akshay18233665@***

Files Generated:
- extensions.sql : Database extensions
- schema.sql : Complete schema (tables, indexes, constraints)
- policies.sql : Row Level Security policies
- functions.sql : Custom SQL functions
- triggers.sql : Database triggers
- complete_backup.dump : Full binary backup with all data
- seed_data.sql : Seed data (if configured)

Restore Instructions:
1. Create a new Supabase project
2. Get the connection string from project settings
3. Run: export SUPABASE_DB_URL="your-new-connection-string"
4. Run: ./restore.sh

For more information, see README.md
8 changes: 8 additions & 0 deletions supabase_snapshot/extensions.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
CREATE EXTENSION IF NOT EXISTS "pg_cron";
CREATE EXTENSION IF NOT EXISTS "pg_graphql";
CREATE EXTENSION IF NOT EXISTS "pg_net";
CREATE EXTENSION IF NOT EXISTS "pg_stat_statements";
CREATE EXTENSION IF NOT EXISTS "pgcrypto";
CREATE EXTENSION IF NOT EXISTS "supabase_vault";
CREATE EXTENSION IF NOT EXISTS "uuid-ossp";

Loading
Loading