Home > Mobile >  How to share a postgreSQL database?
How to share a postgreSQL database?

Time:12-15

I'm currently working on a project with some colleagues and a colleague of mine linked a database created in her postgreSQL server to our visual studio project, but we don't know how she can share the database with the rest of us, or how can we modify the database without having it. We're using postgreSQL 14.

CodePudding user response:

One option is to create your database in a cloud provider such as AWS.

You can take a look at: https://aws.amazon.com/rds/postgresql/

This way all of you will be able to access the database.

  • Related