Total Complexity | 0 |
Total Lines | 15 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
9 | class TestDataObject extends DataObject implements TestOnly |
||
10 | { |
||
11 | private static $table_name = 'TestDataObject'; |
||
|
|||
12 | |||
13 | private static array $db = [ |
||
14 | 'Title' => 'Varchar(255)', |
||
15 | 'Content' => 'HTMLText', |
||
16 | ]; |
||
17 | |||
18 | private static $has_one = [ |
||
19 | 'ElementalArea' => ElementalArea::class, |
||
20 | ]; |
||
21 | |||
22 | private static $owns = [ |
||
23 | 'ElementalArea', |
||
24 | ]; |
||
26 |