Created
May 7, 2012 16:44
-
-
Save ottomata/2628883 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
mysql> show create table searchindex\G | |
*************************** 1. row *************************** | |
Table: searchindex | |
Create Table: CREATE TABLE `searchindex` ( | |
`si_page` int(10) unsigned NOT NULL, | |
`si_title` varbinary(255) NOT NULL DEFAULT '', | |
`si_text` mediumblob NOT NULL, | |
UNIQUE KEY `si_page` (`si_page`) | |
) ENGINE=MyISAM DEFAULT CHARSET=binary | |
1 row in set (0.00 sec) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment