mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
25f61141cb
* ENH Add lightweight test override for Environment::isCli() * NEW Allow JOIN with SQL UPDATE.
17 lines
337 B
PHP
17 lines
337 B
PHP
<?php
|
|
|
|
namespace SilverStripe\ORM\Tests\SQLUpdateTest;
|
|
|
|
use SilverStripe\Dev\TestOnly;
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class TestOther extends DataObject implements TestOnly
|
|
{
|
|
private static $table_name = 'SQLUpdateTestOther';
|
|
|
|
private static $db = [
|
|
'Title' => 'Varchar(255)',
|
|
'Description' => 'Text'
|
|
];
|
|
}
|