'Varchar(192)', 'Content' => 'Text', ]; private static $indexes = [ 'NameIndex' => [ 'type' => 'unique', 'columns' => ['Title'], ], 'SearchFields' => [ 'type' => 'fulltext', 'name' => 'SearchFields', 'columns' => ['Title', 'Content'], ], ]; /** * @config */ private static $indexes_alt = [ 'NameIndex' => [ 'type' => 'unique', 'name' => 'NameIndex', 'columns' => ['Title'], ], 'SearchFields' => [ 'type' => 'fulltext', 'columns' => ['Title', 'Content'], ], ]; }