silverstripe-framework/tests/php/ORM/Filters/SearchFilterApplyRelationTest/ManyManyChild.php

17 lines
365 B
PHP
Raw Normal View History

2016-10-14 03:30:05 +02:00
<?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"
);
}