7 lines
101 B
Bash
7 lines
101 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
DATABASE=lsr
|
||
|
|
||
|
psql -f clean-postgres.sql ${DATABASE}
|
||
|
psql -f lsr-postgres.sql ${DATABASE}
|