mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
21 lines
442 B
PHP
21 lines
442 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\Tests\FormScaffolderTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class ParentChildJoin extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'FormScaffolderTest_ParentChildJoin';
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar',
|
|
];
|
|
|
|
private static $has_one = [
|
|
'Parent' => ParentModel::class,
|
|
'Child' => Child::class,
|
|
];
|
|
}
|