mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
17 lines
381 B
PHP
17 lines
381 B
PHP
|
<?php
|
||
|
|
||
|
namespace SilverStripe\ORM\Tests\DBVarcharTest;
|
||
|
|
||
|
use SilverStripe\Dev\TestOnly;
|
||
|
use SilverStripe\ORM\DataObject;
|
||
|
|
||
|
class TestObject extends DataObject implements TestOnly
|
||
|
{
|
||
|
private static $table_name = 'DBVarcharTest_TestObject';
|
||
|
|
||
|
private static $db = [
|
||
|
'Title' => 'Varchar(129)',
|
||
|
'NullableField' => 'Varchar(111, ["nullifyEmpty" => false])'
|
||
|
];
|
||
|
}
|