Visual Studio Database Project Alternative for PostgreSQL?

I am using a database project in Visual Studio 2010 to support the versioning database schema and am quite happy with this, since I can also use VBDBCMD to deploy a versioned schema for any database instance quite easily.

Now I need to work with PostgreSQL, and I wonder if there is any tool similar to the "database project" in Visual Studio to support the versioning database schema, as well as to deploy the schema.

Thanks.

+7
postgresql database-project
source share
1 answer

The closest I could offer is Eclipse with the Toad plugin.

In general, shopping list questions are not welcome on Stack Exchange sites because they tend to ask for opinions and tend to quickly become outdated.

Another option is to use a source control solution like git or subversion, and then just use standard text editors in your SQL files. This is what we do in the LedgerSMB project.

+3
source share

All Articles