new directory for sql files
This commit is contained in:
parent
655dbea39b
commit
c748758b9e
4 changed files with 3 additions and 3 deletions
|
@ -1,9 +1,9 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
if [[ $1 -eq "0" ]]; then
|
if [[ $1 -eq "0" ]]; then
|
||||||
sqlite3 test.db ".read create_db.sql"
|
sqlite3 test.db ".read sql/create_db.sql"
|
||||||
elif [[ $1 -eq "1" ]]; then
|
elif [[ $1 -eq "1" ]]; then
|
||||||
sqlite3 test.db ".read insert_data.sql"
|
sqlite3 test.db ".read sql/insert_data.sql"
|
||||||
elif [[ $1 -eq "9" ]]; then
|
elif [[ $1 -eq "9" ]]; then
|
||||||
sqlite3 test.db ".read show_all.sql"
|
sqlite3 test.db ".read sql/show_all.sql"
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue