From 7ddb24055985cbff2f42d765bd7a27e77fe0d627 Mon Sep 17 00:00:00 2001 From: lukasmartinelli Date: Sat, 8 Oct 2016 21:20:01 +0200 Subject: [PATCH] Add missing SQL files in create schema --- schema/create_schema.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/schema/create_schema.sh b/schema/create_schema.sh index 3194fda1..f98136a2 100755 --- a/schema/create_schema.sh +++ b/schema/create_schema.sh @@ -22,6 +22,9 @@ function main() { exec_psql_file "layers/road.sql" exec_psql_file "layers/ice.sql" exec_psql_file "layers/urban.sql" + exec_psql_file "layers/place.sql" + exec_psql_file "layers/country.sql" + exec_psql_file "layers/state.sql" } main