silverstripe-framework/tests/php/ORM/HasManyListTest/Employee.php

22 lines
426 B
PHP
Raw Normal View History

2017-06-28 19:23:38 +02:00
<?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,
);
}