mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
c9c4390619
* Add tests for config based indexing on composite DBFields * Allow fields to have "indexed" option passed via field spec
17 lines
417 B
PHP
17 lines
417 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\DataObjectSchemaTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class HasIndexesInFieldSpecs extends DataObject implements TestOnly
|
|
{
|
|
private static $db = [
|
|
'Normal' => 'Varchar',
|
|
'IndexedTitle' => 'Varchar(255, ["indexed" => true])',
|
|
'NormalMoney' => 'Money',
|
|
'IndexedMoney' => 'Money(["indexed" => true])'
|
|
];
|
|
}
|