1, backup database using:
pg_dump -U ubuntu app_development -f ~/Downloads/app.sql
2, upload to the server.
scp -i ~/.ssh/app.pem ~/Downloads/app.sql ubuntu@[ip]:/var/www/db
3, drop db and create db
dropdb 'app_production'
createbd 'app_production'
4, restore the db
psql -U ubuntu -d app_production -f app.sql