2020-02-10 13:06:48 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
dbhost=localhost
|
|
|
|
|
|
|
|
# suppression d'abord
|
|
|
|
psql -h $dbhost -U redadeg -d redadeg < drop_tables.sql
|
|
|
|
|
|
|
|
# création
|
|
|
|
psql -h $dbhost -U redadeg -d redadeg < create_tables.sql
|
|
|
|
|
2020-02-10 16:24:46 +00:00
|
|
|
# initialisation de la table de référence des secteurs
|
|
|
|
psql -h $dbhost -U redadeg -d redadeg < update_infos_secteurs.sql
|
|
|
|
|