| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 9 | public function migrate(\Jenssegers\Mongodb\Schema\Blueprint $collection) |
||
| 10 | { |
||
| 11 | $collection->index(Application::TYPE); |
||
| 12 | $collection->index(Application::USER_ID); |
||
| 13 | $collection->index(Application::MACHINE_ID); |
||
| 14 | $collection->index(Application::PROXY_ID); |
||
| 15 | $collection->index(Application::SCHEDULE_ID); |
||
| 16 | $collection->index(Application::SCRIPT_ID); |
||
| 17 | $collection->index(Application::SCRIPT_CONFIG_ID); |
||
| 18 | } |
||
| 20 |