What is fastest way to migrate new tables from one...
# help
v
What is fastest way to migrate new tables from one supabase to another? I've got my pgAdmin UI up and I am tempted to copy the generated CREATE sql from the source database and execute it on the target database. Are there any problems with this?
n
Hello @VΞLO! This thread has been automatically created from your message in #843999948717555735 a ``few seconds ago``. Pinging @User so that they see this as well! Want to unsubscribe from this thread? Right-click the thread in Discord (or use the ... menu) and select Leave Thread to unsubscribe from future updates. Want to change the title? Use the
/title
command! We have solved your problem? Click the button below to archive it.
v
ERROR: must be member of role "supabase_admin" SQL state: 42501
hmm
o
Hi The fastest way to migrate a database from one project to another is by using a tool like ``pg_dump``
n
VΞLO (2022-03-24)
o
And so you just have to connect to the connection string available in settings
v
k I'll try that route.