| Conditions | 1 |
| Paths | 1 |
| Total Lines | 17 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 10 | public function up(Schema $schema): void |
||
| 11 | { |
||
| 12 | $this->addSql( |
||
| 13 | <<<'SQL' |
||
| 14 | CREATE TABLE `saga_store` ( |
||
| 15 | `id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL, |
||
| 16 | `saga_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, |
||
| 17 | `payload` json NOT NULL, |
||
| 18 | `created_at` timestamp(6) NOT NULL, |
||
| 19 | `updated_at` timestamp(6) NULL DEFAULT NULL, |
||
| 20 | PRIMARY KEY (`id`) |
||
| 21 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; |
||
| 22 | SQL |
||
| 23 | ); |
||
| 24 | |||
| 25 | $this->addSql( |
||
| 26 | <<<'SQL' |
||
| 27 | CREATE TABLE `saga_store_relation` ( |
||
| 37 |
The issue could also be caused by a filter entry in the build configuration. If the path has been excluded in your configuration, e.g.
excluded_paths: ["lib/*"], you can move it to the dependency path list as follows:For further information see https://scrutinizer-ci.com/docs/tools/php/php-scrutinizer/#list-dependency-paths