for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SilverStripe\FullTextSearch\Tests\SolrIndexTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
class SolrIndexTest_MyDataObjectOne extends DataObject implements TestOnly
{
private static $db = [
$db
'Title' => 'Varchar(255)',
'ShowInSearch' => 'Boolean'
];
private static $table_name = 'SolrIndexTestMyDataObjectOne';
$table_name
}