1 views_handler_filter_string.test | protected ViewsHandlerFilterStringTest::schemaDefinition() |
The schema definition.
Overrides ViewsSqlTest::schemaDefinition
File
- core/
modules/ views/ tests/ handlers/ views_handler_filter_string.test, line 31 - Definition of ViewsHandlerFilterStringTest.
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;
}