mirror of
https://github.com/silverstripe/silverstripe-fulltextsearch
synced 2024-10-22 14:05:29 +02:00
21 lines
524 B
PHP
21 lines
524 B
PHP
<?php
|
|
|
|
namespace SilverStripe\FullTextSearch\Tests\SearchUpdaterTest;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class SearchUpdaterTest_ManyMany extends DataObject
|
|
{
|
|
private static $db = array(
|
|
'Field1' => 'Varchar',
|
|
'Field2' => 'Varchar'
|
|
);
|
|
|
|
private static $table_name = 'SearchUpdaterTest_ManyMany';
|
|
|
|
private static $belongs_many_many = array(
|
|
'ManyManyContainer' => SearchUpdaterTest_Container::class,
|
|
'ManyManyOtherContainer' => SearchUpdaterTest_OtherContainer::class,
|
|
);
|
|
}
|