mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26 lines
544 B
PHP
26 lines
544 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\DataObjectTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class Staff extends DataObject implements TestOnly
|
|
{
|
|
private static $db = [
|
|
'Salary' => 'BigInt',
|
|
'EmploymentType' => 'Varchar',
|
|
];
|
|
|
|
private static $table_name = 'DataObjectTest_Staff';
|
|
|
|
private static $has_one = [
|
|
'CurrentCompany' => Company::class,
|
|
'PreviousCompany' => Company::class
|
|
];
|
|
|
|
private static $defaults = [
|
|
'EmploymentType' => 'Staff',
|
|
];
|
|
}
|