silverstripe-framework/tests/php/ORM/ManyManyThroughListTest/PolyJoinObject.php

22 lines
497 B
PHP
Raw Normal View History

<?php
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
use SilverStripe\Dev\TestOnly;
use SilverStripe\ORM\DataObject;
class PolyJoinObject extends DataObject implements TestOnly
{
private static $table_name = 'ManyManyThroughListTest_PolyJoinObject';
private static $db = [
'Title' => 'Varchar',
'Sort' => 'Int',
];
private static $has_one = [
'Parent' => DataObject::class, // Polymorphic parent
'Child' => PolyItem::class,
];
}