(WARNING: IT WILL DELETE ALL YOUR DATABASES)
Stop the postgres service:
brew services stop postgres
Delete all files in "postgres" directory:
rm -rf /usr/local/var/postgres/*
Initialize the new database system:
initdb /usr/local/var/postgres -E utf8
Start postgres:
pg_ctl -D /usr/local/var/postgres -l server.log start