mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
32 lines
704 B
PHP
32 lines
704 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\ManyManyThroughListTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\ORM\Versioning\Versioned;
|
|
|
|
/**
|
|
* @property string $Title
|
|
* @method VersionedObject Parent()
|
|
* @method VersionedItem Child()
|
|
* @mixin Versioned
|
|
*/
|
|
class VersionedJoinObject extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'ManyManyThroughListTest_VersionedJoinObject';
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar'
|
|
];
|
|
|
|
private static $extensions = [
|
|
Versioned::class
|
|
];
|
|
|
|
private static $has_one = [
|
|
'Parent' => VersionedObject::class,
|
|
'Child' => VersionedItem::class,
|
|
];
|
|
}
|