mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
22 lines
362 B
PHP
22 lines
362 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\Tests\ORM\UniqueKey;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
|
||
|
class River extends DataObject implements TestOnly
|
||
|
{
|
||
|
/**
|
||
|
* @var string
|
||
|
*/
|
||
|
private static $table_name = 'UniqueKeyTest_River';
|
||
|
|
||
|
/**
|
||
|
* @var array
|
||
|
*/
|
||
|
private static $db = [
|
||
|
'Title' => 'Varchar',
|
||
|
];
|
||
|
}
|