mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
22 lines
444 B
PHP
22 lines
444 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\FullTextSearch\Tests\SolrReindexTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
|
||
|
/**
|
||
|
* Does not have any variant extensions
|
||
|
*/
|
||
|
class SolrReindexTest_Item extends DataObject implements TestOnly
|
||
|
{
|
||
|
private static $extensions = array(
|
||
|
'SolrReindexTest_ItemExtension'
|
||
|
);
|
||
|
|
||
|
private static $db = array(
|
||
|
'Title' => 'Varchar(255)',
|
||
|
'Variant' => 'Int(0)'
|
||
|
);
|
||
|
}
|