diff options
author | Yuchen Pei <hi@ypei.me> | 2021-08-26 11:56:07 +1000 |
---|---|---|
committer | Yuchen Pei <hi@ypei.me> | 2021-09-06 10:46:35 +1000 |
commit | 6995bcca056862e52d1167d6ee7e67d73a2bdd95 (patch) | |
tree | ba86a976e9d14efcf49fff709cf637aaa6d05aef | |
parent | efa352a6de4de467e645c50503257e17254f436e (diff) |
updating the database creation command to be more "batchy"
-rwxr-xr-x | docker/readme-php5.sh | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/docker/readme-php5.sh b/docker/readme-php5.sh index fb62a4d..7ec58b1 100755 --- a/docker/readme-php5.sh +++ b/docker/readme-php5.sh @@ -8,9 +8,7 @@ # - Apache on port 80 # # Don't forget to create the database: -# mysql -uadmin -pXXX -h127.0.0.1 -# > create database hnode; -# > ^D +# mysql -uadmin -pXXX -h127.0.0.1 -e "create database hnode;" # and populate the schema/initial data with: # mysql -uadmin -pXXX -h127.0.0.1 hnode < ../h-source/tables.sql |