| Conditions | 1 | 
| Paths | 1 | 
| Total Lines | 18 | 
| 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 `event_store` (  | 
            ||
| 15 | `id` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,  | 
            ||
| 16 | `event_name` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,  | 
            ||
| 17 | `payload` json NOT NULL,  | 
            ||
| 18 | `metadata` json NOT NULL,  | 
            ||
| 19 | `applied_at` timestamp(6) NOT NULL,  | 
            ||
| 20 | PRIMARY KEY (`id`),  | 
            ||
| 21 | KEY `event_name` (`event_name`)  | 
            ||
| 22 | ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;  | 
            ||
| 23 | SQL  | 
            ||
| 24 | );  | 
            ||
| 25 | |||
| 26 | $this->addSql(  | 
            ||
| 27 | <<<'SQL'  | 
            ||
| 28 | CREATE TABLE `event_store_relation` (  | 
            ||
| 38 | 
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