mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26 lines
474 B
PHP
26 lines
474 B
PHP
<?php
|
|
|
|
namespace SilverStripe\Forms\Tests\FormTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\ORM\ManyManyList;
|
|
|
|
/**
|
|
*
|
|
* @method ManyManyList Players()
|
|
*/
|
|
class Team extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'FormTest_Team';
|
|
|
|
private static $db = [
|
|
'Name' => 'Varchar',
|
|
'Region' => 'Varchar',
|
|
];
|
|
|
|
private static $many_many = [
|
|
'Players' => Player::class
|
|
];
|
|
}
|