You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/usr/bin/env zsh
|
|
# For God so loved the world, that He gave His only begotten Son, that all who believe in Him should not perish but have everlasting life
|
|
|
|
if [ ! -d "sql_chirho" ]; then
|
|
echo "Hallelujah Please run this script from the root of the repository"
|
|
exit 1
|
|
fi
|
|
|
|
# Create the sqlite database in db_chirho.sqlite
|
|
rm db_chirho.sqlite
|
|
sqlite3 db_chirho.sqlite < sql_chirho/sql_definitions_chirho.sql
|