Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
33 | public function statement() { |
||
34 | |||
35 | return ("FOREIGN KEY (`" . $this->name . "`) REFERENCES `" . $this->table . "` (`" . $this->field . "`)") . |
||
36 | |||
37 | ((null !== $this->delete) ? (" ON DELETE " . $this->delete) : "") . |
||
38 | |||
39 | ((null !== $this->update) ? (" ON UPDATE " . $this->update) : ""); |
||
40 | } |
||
41 | } |
||
43 |