#!/bin/bash

dropdb pbt -U postgres
createdb pbt -U postgres
psql pbt -U postgres < docs/schema.postgres
./bin/country_pop docs/countries.txt
./bin/quest_pop docs/ttt-questions.txt

