log
graph
tags
branches
changeset
browse
file
latest
diff
annotate
file log
raw
pgLatLon
view create_test_db.sh @ 0:3b70e93cc07d
find changesets by author, revision, files, or words in the commit message
Version 0.1 (initial commit)
author
jbe
date
Sun Aug 21 17:43:48 2016 +0200 (2016-08-21)
parents
children
line source
1
#!/bin/sh
2
dropdb latlon_test --if-exists
3
createdb latlon_test || exit 1
4
psql -v ON_ERROR_STOP=1 -f create_test_db.schema.sql latlon_test || exit 1
5
for i in 1 2 3 4 5 6 7 8 9 10
6
do
7
psql -v ON_ERROR_STOP=1 -f create_test_db.data.sql latlon_test || exit 1
8
done
Impressum / About Us