mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
aa2c71424d
API Add DataObject::setComponent() API Support unary components as getter and setter fields API ManyManyList::add() now supports unsaved records ENHANCEMENT Animal farm
30 lines
564 B
PHP
30 lines
564 B
PHP
<?php
|
|
|
|
|
|
namespace SilverStripe\ORM\Tests\DataObjectDuplicationTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
/**
|
|
* @method Antelope Parent()
|
|
* @method Frog Child()
|
|
*/
|
|
class Elephant extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'DataObjectDuplicateTest_Elephant';
|
|
|
|
private static $cascade_duplicates = [
|
|
'Child',
|
|
];
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar',
|
|
];
|
|
|
|
private static $has_one = [
|
|
'Parent' => Antelope::class,
|
|
'Child' => Frog::class,
|
|
];
|
|
}
|