| Conditions | 1 |
| Paths | 1 |
| Total Lines | 12 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 35 | public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options) |
||
| 36 | { |
||
| 37 | $query = $this->connection->getQueryBuilder(); |
||
| 38 | $query->insert('analytics_whats_new') |
||
| 39 | ->values([ |
||
| 40 | 'version' => $query->createNamedParameter('4.9.1'), |
||
| 41 | 'data' => $query->createNamedParameter('{"changelogURL":"https:\/\/github.com\/rello\/analytics\/blob\/master\/CHANGELOG.md","whatsNew":{ |
||
| 42 | "en":{"regular":["Column picker for data sources","Sharing of report groups","Smart picker integration"],"admin":["New Features apply to users"]}, |
||
| 43 | "de":{"regular":["Spaltenauswahl für Datenquellen","Teilen von Berichtsgruppen","Smart Picker Integration"],"admin":["Nur User Features"]} |
||
| 44 | }}'), |
||
| 45 | ]) |
||
| 46 | ->executeStatement(); |
||
| 47 | } |
||
| 48 | } |