mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
25 lines
525 B
PHP
25 lines
525 B
PHP
<?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';
|
|
|
|
private static $db = array(
|
|
'Name' => 'Varchar',
|
|
'Email' => 'Varchar',
|
|
'HairColor' => 'Varchar',
|
|
'EyeColor' => 'Varchar'
|
|
);
|
|
|
|
private static $searchable_fields = array(
|
|
'Name',
|
|
'HairColor',
|
|
'EyeColor'
|
|
);
|
|
}
|