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

20 lines
478 B
PHP

<?php
namespace SilverStripe\ORM\Tests\Filters\SearchFilterApplyRelationTest;
use SilverStripe\Dev\TestOnly;
class ManyManyGrandChild extends ManyManyChild implements TestOnly
{
private static $table_name = 'SearchFilterApplyRelationTest_ManyManyGrandChild';
// This is to create an separate Table only.
private static $db = [
"GrantChildField" => "Varchar",
];
private static $belongs_many_many = [
"DOs" => TestObject::class,
];
}