silverstripe-frameworktest/code/Organisation.php
Ingo Schommer e15366359e 3.1 compat
2013-03-26 13:53:37 +01:00

12 lines
160 B
PHP

<?php
class Organisation extends DataObject {
// Used to test the Multiform module
private static $db = array(
'OrganisationName' => 'Text'
);
}
?>