mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
34 lines
700 B
PHP
34 lines
700 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\VersionedTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
use SilverStripe\ORM\Versioning\Versioned;
|
|
|
|
/**
|
|
* @mixin Versioned
|
|
*/
|
|
class WithIndexes extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'VersionedTest_WithIndexes';
|
|
|
|
private static $db = array(
|
|
'UniqA' => 'Int',
|
|
'UniqS' => 'Int',
|
|
);
|
|
|
|
private static $extensions = array(
|
|
Versioned::class
|
|
);
|
|
|
|
private static $indexes = [
|
|
'UniqS_idx' => 'unique ("UniqS")',
|
|
'UniqA_idx' => [
|
|
'type' => 'unique',
|
|
'name' => 'UniqA_idx',
|
|
'value' => '"UniqA"',
|
|
],
|
|
];
|
|
}
|