Skip to content

Commit

Permalink
Merge pull request EC-CUBE#138 from arisgi/improve/php7
Browse files Browse the repository at this point in the history
MySQL環境でのインストールで、データベースの初期化に失敗する問題を修正
  • Loading branch information
ryo-endo committed Aug 31, 2017
2 parents 1d85140 + 185ad1b commit ab2a699
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion eccube_install.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ case "${DBTYPE}" in
#${MYSQL} -u ${ROOTUSER} ${PASSOPT} -e "GRANT ALL ON \`${DBNAME}\`.* TO '${DBUSER}'@'%' IDENTIFIED BY '${DBPASS}'"
echo "create table..."
echo "SET SESSION storage_engine = InnoDB;" |
cat - ${SQL_DIR}/create_table_mysql.sql |
cat - ${SQL_DIR}/create_table_mysqli.sql |
${MYSQL} -u ${DBUSER} ${PASSOPT} ${DBNAME}
echo "insert data..."
${MYSQL} -u ${DBUSER} ${PASSOPT} ${DBNAME} < ${SQL_DIR}/insert_data.sql
Expand Down
File renamed without changes.

0 comments on commit ab2a699

Please sign in to comment.