mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
22 lines
426 B
PHP
22 lines
426 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\ORM\Tests\HasManyListTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
|
||
|
class Employee extends DataObject implements TestOnly
|
||
|
{
|
||
|
private static $db = array(
|
||
|
'Name' => 'Varchar(100)',
|
||
|
);
|
||
|
|
||
|
private static $has_one = array(
|
||
|
'Company' => Company::class,
|
||
|
);
|
||
|
|
||
|
private static $has_many = array(
|
||
|
'CompanyCars' => CompanyCar::class,
|
||
|
);
|
||
|
}
|