schema 146 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 #!/bin/bash DB="gargandbV5" rm ../../tmp* rm ../../repo* psql -c "drop database IF EXISTS \"${DB}\"" createdb "${DB}" psql "${DB}" < schema.sql