silverstripe-framework/tests/php/ORM/Filters/SearchFilterApplyRelationTest/ManyManyChild.php
2016-12-19 16:08:19 +13:00

16 lines
382 B
PHP

<?php
namespace SilverStripe\ORM\Tests\Filters\SearchFilterApplyRelationTest;
use SilverStripe\Dev\TestOnly;
class ManyManyChild extends ManyManyParent implements TestOnly
{
private static $table_name = 'SearchFilterApplyRelationTest_ManyManyChild';
// This is to create an seperate Table only.
private static $db = array(
"ChildField" => "Varchar"
);
}