| 1 | <?php |
||
| 3 | class CustomerExtension extends DataExtension{ |
||
| 4 | |||
| 5 | private static $db = array( |
||
| 6 | 'Customer_ID' => 'Int' |
||
| 7 | ); |
||
| 8 | |||
| 9 | private static $has_many = array( |
||
| 10 | 'Orders' => 'Order' |
||
| 11 | ); |
||
| 12 | |||
| 13 | private static $indexes = array( |
||
| 14 | 'Customer_ID' => true // make unique |
||
| 15 | ); |
||
| 16 | |||
| 17 | public function onBeforeWrite() { |
||
| 33 | |||
| 34 | } |