Fixes the "permission denied for table user_resumes" error users see when saving resumes.
The error happens because the user_resumes table was created by assamcon (superuser), but your website's PHP code runs as assamcon_id. PostgreSQL denies access because users can only access tables they own (unless explicit grants are given).
The fix: This PHP script runs through your db_connection.php, which connects as assamcon_id. So when this script creates the new table, assamcon_id automatically becomes the owner — and your website can read/write it.
Why not phpPgAdmin? Even when you log in as assamcon_id there, the underlying queries often run as the superuser, leaving you back where you started. This script avoids that completely.