Background
A simple database with approximately 20 tables sprinkled with unique constraints, primary keys, and foreign key relationships. This database is for internal use only. Only two or three people will have direct access to the data. Only one of these people is qualified as a database administrator.
The database was developed using DbSchema and PostgreSQL 9.1.
The project itself is designed for a quick and dirty prototype, but using clean data. Authentication and security are not problems.
Problem
I would like to provide a simple CRUD web application so that any data errors can be resolved without having to use DBA.
Question
What software do you recommend by providing a simple web interface that allows non-database administrators the ability to update data?
Example
To clarify if this was a Java application, here is the simplicity that I imagine:
Related
phpPgAdmin is close, but I thought there might be something simpler (i.e. less intimidating for non-DBA).
Any suggestions?
Thanks!
source share