mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
22 lines
748 B
PHP
22 lines
748 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\DataListTest\EagerLoading;
|
|
|
|
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
|
|
];
|
|
}
|