• Blog
  • Documentation
  • Courses
  • Changelog
  • AI Starters
  • UI Kit
  • FAQ
  • Supamode
    New
  • Pricing

Launch your next SaaS in record time with Makerkit, a React SaaS Boilerplate for Next.js and Supabase.

Makerkit is a product of Makerkit Pte Ltd (registered in the Republic of Singapore)Company Registration No: 202407149CFor support or inquiries, please contact us

About
  • FAQ
  • Contact
  • Verify your Discord
  • Consultation
  • Open Source
  • Become an Affiliate
Product
  • Documentation
  • Blog
  • Changelog
  • UI Blocks
  • Figma UI Kit
  • AI SaaS Starters
License
  • Activate License
  • Upgrade License
  • Invite Member
Legal
  • Terms of License
    • Cannot sign in
    • Cannot see tables

Cannot see tables

Understanding how to troubleshoot the issue where you cannot see tables

This issue may happen mostly under the following circumstances:

  1. You did not sync the tables
  2. You don't have the correct permissions to see the tables

Fix 1. Sync the tables

If you did not sync the tables, you can do so by running the following query from the SQL Query Editor in Supabase:

sql
select supamode.sync_managed_tables('public');

This will sync all the tables in the public schema.

If you have tables in other schemas, you can sync them by running the following query:

sql
select supamode.sync_managed_tables('schema_name');

This will sync all the tables in the schema_name schema.

Fix 2. Check your permissions

If you don't have the correct permissions to see the tables, and you're not the database administrator, you can ask the database administrator to add the required permissions to your user's role.

On this page
  1. Fix 1. Sync the tables
    1. Fix 2. Check your permissions