Dump PostgreSQL without owner and privileges
If you ever wanted to dump your postgres development database without the owner and the privileges, then you just need to run the following command:
pg_dump database_name -O -x > output_file
If you ever wanted to dump your postgres development database without the owner and the privileges, then you just need to run the following command:
pg_dump database_name -O -x > output_file