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