postgresql 是否仅将公共架构从Supabase复制到本地数据库?

0lvr5msh  于 2023-05-06  发布在  PostgreSQL
关注(0)|答案(1)|浏览(174)

如何从Supabase数据库中只复制公共模式的数据并将其粘贴到新的本地PostgreSQL数据库?
我尝试使用Snaplet,但只保存转换后的数据。

u0njafvf

u0njafvf1#

您可以使用Supabase CLI执行此操作。在本地Supabase项目设置完成后,可以调用以下命令。

# initialize a local project.
supabase init

# Link the local project to the remote project
supabase link --project-ref YOUR_PROJECT_REF_HERE

# Get the migration SQL script from the remote instance
supabase db diff --linked --use-migra

相关问题