silverstripe-framework/tests/php/ORM/Search/SearchContextTest/Person.php

25 lines
515 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?php
namespace SilverStripe\ORM\Tests\Search\SearchContextTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
class Person extends DataObject implements TestOnly
{
private static $table_name = 'SearchContextTest_Person';
2016-10-14 03:30:05 +02:00
private static $db = [
'Name' => 'Varchar',
'Email' => 'Varchar',
'HairColor' => 'Varchar',
'EyeColor' => 'Varchar'
];
2016-10-14 03:30:05 +02:00
private static $searchable_fields = [
'Name',
'HairColor',
'EyeColor'
];
2016-10-14 03:30:05 +02:00
}