| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | public function changeSchema(Schema $schema, array $options) { |
||
| 14 | $prefix = $options['tablePrefix']; |
||
| 15 | $this->updateToBigint($schema, "${prefix}mounts", "root_id"); |
||
| 16 | $this->updateToBigint($schema, "${prefix}filecache", "fileid"); |
||
| 17 | $this->updateToBigint($schema, "${prefix}filecache", "parent"); |
||
| 18 | $this->updateToBigint($schema, "${prefix}vcategory_to_object", "objid"); |
||
| 19 | } |
||
| 20 | |||
| 38 |