Commit fdda79de authored by Kazuhiko Shiozaki's avatar Kazuhiko Shiozaki

use groonga storage engine instead of MyISAM.

parent 1bab34d6
......@@ -60,12 +60,12 @@
<key> <string>src</string> </key>
<value> <string>CREATE TABLE `content_translation` (\n
`uid` BIGINT UNSIGNED NOT NULL,\n
`property_name` VARCHAR(100),\n
`content_language` VARCHAR(100),\n
`property_name` VARBINARY(100),\n
`content_language` VARBINARY(100),\n
`translated_text` TEXT,\n
PRIMARY KEY (`uid`, `property_name`, `content_language`),\n
FULLTEXT `Translated Text` (`translated_text`)\n
) ENGINE=MyISAM;\n
FULLTEXT KEY (`translated_text`)\n
) ENGINE=groonga;\n
</string> </value>
</item>
<item>
......
2011-12-20 Kazuhiko
* use groonga storage engine instead of MyISAM.
2010-04-02 yusuke
* Fixed the column name conflict.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment