| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 34 | public function revert_data() |
||
| 35 | { |
||
| 36 | return array( |
||
| 37 | // Revert the storage engine back to the original setting if it was stored |
||
| 38 | array('if', array( |
||
| 39 | ($this->db->get_sql_layer() === 'postgres'), |
||
| 40 | array('custom', array(array($this, 'revert_postgres_changes'))), |
||
| 41 | )), |
||
| 42 | |||
| 43 | ); |
||
| 44 | } |
||
| 45 | |||
| 68 |