2023-06-07 04:59:02 +02:00
|
|
|
<?php
|
|
|
|
|
2023-07-06 04:21:28 +02:00
|
|
|
namespace SilverStripe\ORM\Tests\DataListTest\EagerLoading;
|
2023-06-07 04:59:02 +02:00
|
|
|
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
|
|
|
|
class ManyManyThroughSubEagerLoadObjectManyManyThroughSubSubEagerLoadObject extends DataObject implements TestOnly
|
|
|
|
{
|
|
|
|
// Removed some of the table name and suffixed _truncated because the table name was too long for MySQL
|
|
|
|
private static $table_name = 'ManyManyThroughSubEagerLoadObjectManyManyThroughSubSub_truncated';
|
|
|
|
|
|
|
|
private static $db = [
|
|
|
|
'Title' => 'Varchar'
|
|
|
|
];
|
|
|
|
|
|
|
|
private static $has_one = [
|
|
|
|
'ManyManyThroughSubEagerLoadObject' => ManyManyThroughSubEagerLoadObject::class,
|
|
|
|
'ManyManyThroughSubSubEagerLoadObject' => ManyManyThroughSubSubEagerLoadObject::class
|
|
|
|
];
|
|
|
|
}
|