Skip to content

Instantly share code, notes, and snippets.

@ottomata
Created May 7, 2012 16:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ottomata/2628883 to your computer and use it in GitHub Desktop.
Save ottomata/2628883 to your computer and use it in GitHub Desktop.
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