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