Skip to content

Latest commit

 

History

History
18 lines (12 loc) · 295 Bytes

remote-postgres.md

File metadata and controls

18 lines (12 loc) · 295 Bytes

Notes on Remote Postgres to Heroku

Add to PATH

export PATH=/Applications/Postgres.app/Contents/Versions/latest/bin:$PATH

Run PSQL

heroku pg:psql -a jitterted-kidbank

Schema View

SELECT COLUMN_NAME, DATA_TYPE FROM information_schema.COLUMNS WHERE TABLE_NAME = 'user_profiles';