silverstripe-frameworktest/code/Organisation.php

11 lines
171 B
PHP

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