Skip to content

Latest commit

 

History

History
21 lines (13 loc) · 485 Bytes

README.md

File metadata and controls

21 lines (13 loc) · 485 Bytes

Nutrahome DB

  1. Export PostgreSQL database

    • Open terminal as admin, then execute these lines

      $ cd C:\Program Files\PostgreSQL\10\bin
      
      $ pg_dump -U <username> nutrahome > nutrahome.pgsql
  2. Import PostgreSQL database

    • Open terminal as admin, then execute these lines

      $ cd C:\Program Files\PostgreSQL\10\bin
      
      $ psql -U <username> nutrahome < nutrahome.pgsql