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

16 lines
376 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
2016-10-14 03:30:05 +02:00
{
private static $table_name = 'SearchFilterApplyRelationTest_ManyManyChild';
2016-10-14 03:30:05 +02:00
// This is to create a separate Table only.
private static $db = [
"ChildField" => "Varchar"
];
2016-10-14 03:30:05 +02:00
}