mirror of
https://github.com/silverstripe/silverstripe-frameworktest
synced 2024-10-22 11:06:02 +02:00
16 lines
295 B
PHP
16 lines
295 B
PHP
<?php
|
|
namespace SilverStripe\FrameworkTest\Model;
|
|
|
|
use SilverStripe\ORM\DataObject;
|
|
|
|
class Organisation extends DataObject
|
|
{
|
|
|
|
private static $table_name = 'Organisation';
|
|
|
|
// Used to test the Multiform module
|
|
private static $db = array(
|
|
'OrganisationName' => 'Text'
|
|
);
|
|
}
|