mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
e2e32317d6
Also rename ViewableData to ModelData ahead of the template layer lift-and-shift
15 lines
269 B
PHP
15 lines
269 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Model\Tests\List\MapTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
|
|
class SubTeam extends Team implements TestOnly
|
|
{
|
|
private static $table_name = 'MapTest_SubTeam';
|
|
|
|
private static $has_one = [
|
|
"ParentTeam" => Team::class,
|
|
];
|
|
}
|