Skip to content

Commit

Permalink
Use regular ints for indexedChars/totalChars in FT (schema change)
Browse files Browse the repository at this point in the history
  • Loading branch information
dstillman committed Nov 20, 2013
1 parent 79e71a5 commit c2d5f53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions misc/fulltext.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ CREATE TABLE IF NOT EXISTS `fulltextContent` (
`libraryID` int(10) unsigned NOT NULL,
`key` char(8) CHARACTER SET ascii NOT NULL,
`content` mediumtext NOT NULL,
`indexedChars` mediumint(8) unsigned NOT NULL DEFAULT '0',
`totalChars` mediumint(8) unsigned NOT NULL DEFAULT '0',
`indexedChars` int unsigned NOT NULL DEFAULT '0',
`totalChars` int unsigned NOT NULL DEFAULT '0',
`indexedPages` smallint(5) unsigned NOT NULL DEFAULT '0',
`totalPages` smallint(5) unsigned NOT NULL DEFAULT '0',
`version` int(10) unsigned NOT NULL DEFAULT '0',
Expand Down

0 comments on commit c2d5f53

Please sign in to comment.