Changeset 23548


Ignore:
Timestamp:
2014/06/13 14:07:33 (10 years ago)
Author:
shutta
Message:

#1980 インストールシェルの2.12対応
MySQLの場合のシーケンス用テーブルのストレージエンジン指定を修正。

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/version-2_13-dev/eccube_install.sh

    r23547 r23548  
    176176    for S in $SEQUENCES 
    177177    do 
    178     echo "CREATE TABLE $S ( sequence int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (sequence)) ENGINE=MyISAM DEFAULT CHARSET=utf8; LOCK TABLES $S WRITE; INSERT INTO $S VALUES (10000); UNLOCK TABLES;" >> ${OPTIONAL_SQL_FILE} 
     178    echo "CREATE TABLE $S ( sequence int(11) NOT NULL AUTO_INCREMENT, PRIMARY KEY (sequence)) ENGINE=InnoDB DEFAULT CHARSET=utf8; LOCK TABLES $S WRITE; INSERT INTO $S VALUES (10000); UNLOCK TABLES;" >> ${OPTIONAL_SQL_FILE} 
    179179    done 
    180180    echo "execute optional SQL..." 
Note: See TracChangeset for help on using the changeset viewer.