function ViewsHandlerFilterStringTest::schemaDefinition
Overrides ViewsSqlTest::schemaDefinition
File
-
tests/
handlers/ views_handler_filter_string.test, line 51
Class
- ViewsHandlerFilterStringTest
- Tests the core views_handler_filter_string handler.
Code
protected function schemaDefinition() {
$schema = parent::schemaDefinition();
$schema['views_test']['fields']['description'] = array(
'description' => "A person's description",
'type' => 'text',
'not null' => FALSE,
'size' => 'big',
);
return $schema;
}