2016-10-14 03:30:05 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
|
|
|
|
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @property string $Title
|
|
|
|
* @method TestObject Parent()
|
|
|
|
* @method Item Child()
|
|
|
|
*/
|
|
|
|
class JoinObject extends DataObject implements TestOnly
|
|
|
|
{
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $table_name = 'ManyManyThroughListTest_JoinObject';
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $db = [
|
|
|
|
'Title' => 'Varchar',
|
|
|
|
'Sort' => 'Int',
|
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
|
2016-12-16 05:34:21 +01:00
|
|
|
private static $has_one = [
|
|
|
|
'Parent' => TestObject::class,
|
|
|
|
'Child' => Item::class,
|
|
|
|
];
|
2016-10-14 03:30:05 +02:00
|
|
|
}
|