| Conditions | 1 |
| Paths | 1 |
| Total Lines | 127 |
| Code Lines | 121 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
Small methods make your code easier to understand, in particular if combined with a good name. Besides, if your method is small, finding a good name is usually much easier.
For example, if you find yourself adding comments to a method's body, this is usually a good sign to extract the commented part to a new method, and use the comment as a starting point when coming up with a good name for this new method.
Commonly applied refactorings include:
If many parameters/temporary variables are present:
| 1 | <?php |
||
| 215 | public function mySQLDown(Schema $schema): void |
||
| 216 | { |
||
| 217 | // this down() migration is auto-generated, please modify it to your needs |
||
| 218 | $this->abortIf('mysql' !== $this->getDatabaseType(), 'Migration can only be executed safely on \'mysql\'.'); |
||
| 219 | |||
| 220 | $this->addSql('ALTER TABLE currencies DROP FOREIGN KEY FK_37C44693727ACA70'); |
||
| 221 | $this->addSql('ALTER TABLE `suppliers` DROP FOREIGN KEY FK_AC28B95CECD792C0'); |
||
| 222 | $this->addSql('ALTER TABLE `pricedetails` DROP FOREIGN KEY FK_C68C4459398D64AA'); |
||
| 223 | $this->addSql('ALTER TABLE `parts` DROP FOREIGN KEY FK_6940A7FE2626CEF9'); |
||
| 224 | $this->addSql('ALTER TABLE `measurement_units` DROP FOREIGN KEY FK_F5AF83CF727ACA70'); |
||
| 225 | $this->addSql('ALTER TABLE `storelocations` DROP FOREIGN KEY FK_7517020B270BFF1'); |
||
| 226 | $this->addSql('DROP TABLE currencies'); |
||
| 227 | $this->addSql('DROP TABLE `measurement_units`'); |
||
| 228 | $this->addSql('DROP TABLE part_lots'); |
||
| 229 | $this->addSql('ALTER TABLE `attachment_types` DROP FOREIGN KEY FK_EFAED719727ACA70'); |
||
| 230 | $this->addSql('ALTER TABLE `attachment_types` DROP filetype_filter, DROP not_selectable, CHANGE comment comment TEXT DEFAULT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 231 | $this->addSql('DROP INDEX idx_efaed719727aca70 ON `attachment_types`'); |
||
| 232 | $this->addSql('CREATE INDEX attachement_types_parent_id_k ON `attachment_types` (parent_id)'); |
||
| 233 | $this->addSql('ALTER TABLE `attachment_types` ADD CONSTRAINT FK_EFAED719727ACA70 FOREIGN KEY (parent_id) REFERENCES `attachment_types` (id)'); |
||
| 234 | $this->addSql('ALTER TABLE `attachments` DROP FOREIGN KEY FK_47C4FAD61F1F2A24'); |
||
| 235 | $this->addSql('ALTER TABLE `attachments` DROP FOREIGN KEY FK_47C4FAD6C54C8C93'); |
||
| 236 | $this->addSql('ALTER TABLE `attachments` DROP FOREIGN KEY FK_47C4FAD61F1F2A24'); |
||
| 237 | $this->addSql('ALTER TABLE `attachments` DROP datetime_added, CHANGE type_id type_id INT NOT NULL, CHANGE show_in_table show_in_table TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE filename filename MEDIUMTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 238 | $this->addSql('CREATE INDEX attachements_class_name_k ON `attachments` (class_name)'); |
||
| 239 | $this->addSql('DROP INDEX idx_47c4fad61f1f2a24 ON `attachments`'); |
||
| 240 | $this->addSql('CREATE INDEX attachements_element_id_k ON `attachments` (element_id)'); |
||
| 241 | $this->addSql('DROP INDEX idx_47c4fad6c54c8c93 ON `attachments`'); |
||
| 242 | $this->addSql('CREATE INDEX attachements_type_id_fk ON `attachments` (type_id)'); |
||
| 243 | $this->addSql('ALTER TABLE `attachments` ADD CONSTRAINT FK_47C4FAD6C54C8C93 FOREIGN KEY (type_id) REFERENCES `attachment_types` (id)'); |
||
| 244 | $this->addSql('ALTER TABLE `attachments` ADD CONSTRAINT FK_47C4FAD61F1F2A24 FOREIGN KEY (element_id) REFERENCES `parts` (id) ON DELETE CASCADE'); |
||
| 245 | $this->addSql('ALTER TABLE `categories` DROP FOREIGN KEY FK_3AF34668727ACA70'); |
||
| 246 | $this->addSql('ALTER TABLE `categories` DROP not_selectable, CHANGE disable_footprints disable_footprints TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE disable_manufacturers disable_manufacturers TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE disable_autodatasheets disable_autodatasheets TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE disable_properties disable_properties TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE comment comment TEXT DEFAULT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 247 | $this->addSql('DROP INDEX idx_3af34668727aca70 ON `categories`'); |
||
| 248 | $this->addSql('CREATE INDEX categories_parent_id_k ON `categories` (parent_id)'); |
||
| 249 | $this->addSql('ALTER TABLE `categories` ADD CONSTRAINT FK_3AF34668727ACA70 FOREIGN KEY (parent_id) REFERENCES `categories` (id)'); |
||
| 250 | $this->addSql('ALTER TABLE `device_parts` DROP FOREIGN KEY FK_AFC547992F180363'); |
||
| 251 | $this->addSql('ALTER TABLE `device_parts` DROP FOREIGN KEY FK_AFC54799C22F6CC4'); |
||
| 252 | $this->addSql('ALTER TABLE `device_parts` DROP FOREIGN KEY FK_AFC547992F180363'); |
||
| 253 | $this->addSql('ALTER TABLE `device_parts` DROP FOREIGN KEY FK_AFC54799C22F6CC4'); |
||
| 254 | $this->addSql('ALTER TABLE `device_parts` CHANGE id_device id_device INT DEFAULT 0 NOT NULL, CHANGE id_part id_part INT DEFAULT 0 NOT NULL, CHANGE quantity quantity INT DEFAULT 0 NOT NULL'); |
||
| 255 | $this->addSql('CREATE UNIQUE INDEX device_parts_combination_uk ON `device_parts` (id_part, id_device)'); |
||
| 256 | $this->addSql('DROP INDEX idx_afc547992f180363 ON `device_parts`'); |
||
| 257 | $this->addSql('CREATE INDEX device_parts_id_device_k ON `device_parts` (id_device)'); |
||
| 258 | $this->addSql('DROP INDEX idx_afc54799c22f6cc4 ON `device_parts`'); |
||
| 259 | $this->addSql('CREATE INDEX device_parts_id_part_k ON `device_parts` (id_part)'); |
||
| 260 | $this->addSql('ALTER TABLE `device_parts` ADD CONSTRAINT FK_AFC547992F180363 FOREIGN KEY (id_device) REFERENCES `devices` (id)'); |
||
| 261 | $this->addSql('ALTER TABLE `device_parts` ADD CONSTRAINT FK_AFC54799C22F6CC4 FOREIGN KEY (id_part) REFERENCES `parts` (id)'); |
||
| 262 | $this->addSql('ALTER TABLE `devices` DROP FOREIGN KEY FK_11074E9A727ACA70'); |
||
| 263 | $this->addSql('ALTER TABLE `devices` DROP not_selectable, CHANGE order_quantity order_quantity INT DEFAULT 0 NOT NULL, CHANGE order_only_missing_parts order_only_missing_parts TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE comment comment TEXT DEFAULT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 264 | $this->addSql('DROP INDEX idx_11074e9a727aca70 ON `devices`'); |
||
| 265 | $this->addSql('CREATE INDEX devices_parent_id_k ON `devices` (parent_id)'); |
||
| 266 | $this->addSql('ALTER TABLE `devices` ADD CONSTRAINT FK_11074E9A727ACA70 FOREIGN KEY (parent_id) REFERENCES `devices` (id)'); |
||
| 267 | $this->addSql('ALTER TABLE `footprints` DROP FOREIGN KEY FK_A34D68A2727ACA70'); |
||
| 268 | $this->addSql('ALTER TABLE `footprints` DROP not_selectable, CHANGE comment comment TEXT DEFAULT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 269 | $this->addSql('DROP INDEX idx_a34d68a2727aca70 ON `footprints`'); |
||
| 270 | $this->addSql('CREATE INDEX footprints_parent_id_k ON `footprints` (parent_id)'); |
||
| 271 | $this->addSql('ALTER TABLE `footprints` ADD CONSTRAINT FK_A34D68A2727ACA70 FOREIGN KEY (parent_id) REFERENCES `footprints` (id)'); |
||
| 272 | $this->addSql('ALTER TABLE `groups` DROP FOREIGN KEY FK_F06D3970727ACA70'); |
||
| 273 | $this->addSql('DROP INDEX IDX_F06D3970727ACA70 ON `groups`'); |
||
| 274 | $this->addSql('ALTER TABLE `groups` DROP not_selectable, CHANGE comment comment MEDIUMTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE name name VARCHAR(32) NOT NULL COLLATE utf8_general_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, CHANGE perms_labels perms_labels SMALLINT NOT NULL'); |
||
| 275 | $this->addSql('CREATE UNIQUE INDEX name ON `groups` (name)'); |
||
| 276 | $this->addSql('ALTER TABLE `manufacturers` DROP FOREIGN KEY FK_94565B12727ACA70'); |
||
| 277 | $this->addSql('ALTER TABLE `manufacturers` DROP not_selectable, CHANGE address address MEDIUMTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE phone_number phone_number TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE fax_number fax_number TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE email_address email_address TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE website website TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE auto_product_url auto_product_url TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE comment comment TEXT DEFAULT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 278 | $this->addSql('DROP INDEX idx_94565b12727aca70 ON `manufacturers`'); |
||
| 279 | $this->addSql('CREATE INDEX manufacturers_parent_id_k ON `manufacturers` (parent_id)'); |
||
| 280 | $this->addSql('ALTER TABLE `manufacturers` ADD CONSTRAINT FK_94565B12727ACA70 FOREIGN KEY (parent_id) REFERENCES `manufacturers` (id)'); |
||
| 281 | $this->addSql('ALTER TABLE `orderdetails` DROP FOREIGN KEY FK_489AFCDC4CE34BEC'); |
||
| 282 | $this->addSql('ALTER TABLE `orderdetails` DROP FOREIGN KEY FK_489AFCDCCBF180EB'); |
||
| 283 | $this->addSql('ALTER TABLE `orderdetails` DROP FOREIGN KEY FK_489AFCDC4CE34BEC'); |
||
| 284 | $this->addSql('ALTER TABLE `orderdetails` DROP FOREIGN KEY FK_489AFCDCCBF180EB'); |
||
| 285 | $this->addSql('ALTER TABLE `orderdetails` DROP last_modified, CHANGE id_supplier id_supplier INT DEFAULT 0 NOT NULL, CHANGE supplierpartnr supplierpartnr TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE obsolete obsolete TINYINT(1) DEFAULT \'0\', CHANGE supplier_product_url supplier_product_url TINYTEXT NOT NULL COLLATE utf8_unicode_ci'); |
||
| 286 | $this->addSql('DROP INDEX idx_489afcdccbf180eb ON `orderdetails`'); |
||
| 287 | $this->addSql('CREATE INDEX orderdetails_id_supplier_k ON `orderdetails` (id_supplier)'); |
||
| 288 | $this->addSql('DROP INDEX idx_489afcdc4ce34bec ON `orderdetails`'); |
||
| 289 | $this->addSql('CREATE INDEX orderdetails_part_id_k ON `orderdetails` (part_id)'); |
||
| 290 | $this->addSql('ALTER TABLE `orderdetails` ADD CONSTRAINT FK_489AFCDC4CE34BEC FOREIGN KEY (part_id) REFERENCES `parts` (id) ON DELETE CASCADE'); |
||
| 291 | $this->addSql('ALTER TABLE `orderdetails` ADD CONSTRAINT FK_489AFCDCCBF180EB FOREIGN KEY (id_supplier) REFERENCES `suppliers` (id)'); |
||
| 292 | $this->addSql('ALTER TABLE `parts` DROP INDEX UNIQ_6940A7FE81081E9B, ADD INDEX parts_order_orderdetails_id_k (order_orderdetails_id)'); |
||
| 293 | $this->addSql('ALTER TABLE `parts` DROP FOREIGN KEY FK_6940A7FE5697F554'); |
||
| 294 | $this->addSql('ALTER TABLE `parts` DROP FOREIGN KEY FK_6940A7FEEBBCC786'); |
||
| 295 | $this->addSql('DROP INDEX IDX_6940A7FEEBBCC786 ON `parts`'); |
||
| 296 | $this->addSql('DROP INDEX IDX_6940A7FE2626CEF9 ON `parts`'); |
||
| 297 | $this->addSql('ALTER TABLE `parts` DROP FOREIGN KEY FK_6940A7FE5697F554'); |
||
| 298 | $this->addSql('ALTER TABLE `parts` DROP FOREIGN KEY FK_6940A7FE7E371A10'); |
||
| 299 | $this->addSql('ALTER TABLE `parts` DROP FOREIGN KEY FK_6940A7FE1ECB93AE'); |
||
| 300 | $this->addSql('ALTER TABLE `parts` ADD instock INT DEFAULT 0 NOT NULL, ADD mininstock INT DEFAULT 0 NOT NULL, DROP minamount, DROP manufacturer_product_number, DROP manufacturing_status, DROP needs_review, DROP tags, DROP mass, CHANGE id_category id_category INT DEFAULT 0 NOT NULL, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, CHANGE name name MEDIUMTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE favorite favorite TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE order_quantity order_quantity INT DEFAULT 1 NOT NULL, CHANGE manual_order manual_order TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE manufacturer_product_url manufacturer_product_url TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE id_part_unit id_storelocation INT DEFAULT NULL'); |
||
| 301 | $this->addSql('ALTER TABLE `parts` ADD CONSTRAINT parts_id_storelocation_fk FOREIGN KEY (id_storelocation) REFERENCES storelocations (id)'); |
||
| 302 | $this->addSql('CREATE INDEX favorite ON `parts` (favorite)'); |
||
| 303 | $this->addSql('CREATE INDEX parts_id_storelocation_k ON `parts` (id_storelocation)'); |
||
| 304 | $this->addSql('DROP INDEX idx_6940a7fe7e371a10 ON `parts`'); |
||
| 305 | $this->addSql('CREATE INDEX parts_id_footprint_k ON `parts` (id_footprint)'); |
||
| 306 | $this->addSql('DROP INDEX idx_6940a7fe1ecb93ae ON `parts`'); |
||
| 307 | $this->addSql('CREATE INDEX parts_id_manufacturer_k ON `parts` (id_manufacturer)'); |
||
| 308 | $this->addSql('DROP INDEX idx_6940a7fe5697f554 ON `parts`'); |
||
| 309 | $this->addSql('CREATE INDEX parts_id_category_k ON `parts` (id_category)'); |
||
| 310 | $this->addSql('ALTER TABLE `parts` ADD CONSTRAINT FK_6940A7FE5697F554 FOREIGN KEY (id_category) REFERENCES `categories` (id)'); |
||
| 311 | $this->addSql('ALTER TABLE `parts` ADD CONSTRAINT FK_6940A7FE7E371A10 FOREIGN KEY (id_footprint) REFERENCES `footprints` (id)'); |
||
| 312 | $this->addSql('ALTER TABLE `parts` ADD CONSTRAINT FK_6940A7FE1ECB93AE FOREIGN KEY (id_manufacturer) REFERENCES `manufacturers` (id)'); |
||
| 313 | $this->addSql('ALTER TABLE `pricedetails` DROP FOREIGN KEY FK_C68C44594A01DDC7'); |
||
| 314 | $this->addSql('DROP INDEX IDX_C68C4459398D64AA ON `pricedetails`'); |
||
| 315 | $this->addSql('ALTER TABLE `pricedetails` DROP FOREIGN KEY FK_C68C44594A01DDC7'); |
||
| 316 | $this->addSql('ALTER TABLE `pricedetails` DROP id_currency, DROP datetime_added, CHANGE price price NUMERIC(11, 5) DEFAULT NULL, CHANGE price_related_quantity price_related_quantity INT DEFAULT 1 NOT NULL, CHANGE min_discount_quantity min_discount_quantity INT DEFAULT 1 NOT NULL, CHANGE manual_input manual_input TINYINT(1) DEFAULT \'1\' NOT NULL'); |
||
| 317 | $this->addSql('CREATE UNIQUE INDEX pricedetails_combination_uk ON `pricedetails` (orderdetails_id, min_discount_quantity)'); |
||
| 318 | $this->addSql('DROP INDEX idx_c68c44594a01ddc7 ON `pricedetails`'); |
||
| 319 | $this->addSql('CREATE INDEX pricedetails_orderdetails_id_k ON `pricedetails` (orderdetails_id)'); |
||
| 320 | $this->addSql('ALTER TABLE `pricedetails` ADD CONSTRAINT FK_C68C44594A01DDC7 FOREIGN KEY (orderdetails_id) REFERENCES `orderdetails` (id) ON DELETE CASCADE'); |
||
| 321 | $this->addSql('DROP INDEX IDX_7517020B270BFF1 ON `storelocations`'); |
||
| 322 | $this->addSql('ALTER TABLE `storelocations` DROP FOREIGN KEY FK_7517020727ACA70'); |
||
| 323 | $this->addSql('ALTER TABLE `storelocations` DROP storage_type_id, DROP only_single_part, DROP limit_to_existing_parts, DROP not_selectable, CHANGE is_full is_full TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE comment comment TEXT DEFAULT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 324 | $this->addSql('DROP INDEX idx_7517020727aca70 ON `storelocations`'); |
||
| 325 | $this->addSql('CREATE INDEX storelocations_parent_id_k ON `storelocations` (parent_id)'); |
||
| 326 | $this->addSql('ALTER TABLE `storelocations` ADD CONSTRAINT FK_7517020727ACA70 FOREIGN KEY (parent_id) REFERENCES `storelocations` (id)'); |
||
| 327 | $this->addSql('DROP INDEX IDX_AC28B95CECD792C0 ON `suppliers`'); |
||
| 328 | $this->addSql('ALTER TABLE `suppliers` DROP FOREIGN KEY FK_AC28B95C727ACA70'); |
||
| 329 | $this->addSql('ALTER TABLE `suppliers` DROP default_currency_id, DROP shipping_costs, DROP not_selectable, CHANGE address address MEDIUMTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE phone_number phone_number TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE fax_number fax_number TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE email_address email_address TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE website website TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE auto_product_url auto_product_url TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE comment comment TEXT DEFAULT NULL COLLATE utf8_unicode_ci, CHANGE name name TINYTEXT NOT NULL COLLATE utf8_unicode_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL'); |
||
| 330 | $this->addSql('DROP INDEX idx_ac28b95c727aca70 ON `suppliers`'); |
||
| 331 | $this->addSql('CREATE INDEX suppliers_parent_id_k ON `suppliers` (parent_id)'); |
||
| 332 | $this->addSql('ALTER TABLE `suppliers` ADD CONSTRAINT FK_AC28B95C727ACA70 FOREIGN KEY (parent_id) REFERENCES `suppliers` (id)'); |
||
| 333 | $this->addSql('ALTER TABLE `users` DROP FOREIGN KEY FK_1483A5E9FE54D947'); |
||
| 334 | $this->addSql('DROP INDEX IDX_1483A5E9FE54D947 ON `users`'); |
||
| 335 | $this->addSql('ALTER TABLE `users` CHANGE name name VARCHAR(32) NOT NULL COLLATE utf8_general_ci, CHANGE need_pw_change need_pw_change TINYINT(1) DEFAULT \'0\' NOT NULL, CHANGE first_name first_name TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE last_name last_name TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE department department TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE email email TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE config_language config_language TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE config_timezone config_timezone TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE config_theme config_theme TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE config_currency config_currency TINYTEXT DEFAULT NULL COLLATE utf8_general_ci, CHANGE last_modified last_modified DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, CHANGE perms_labels perms_labels SMALLINT NOT NULL'); |
||
| 336 | $this->addSql('DROP INDEX uniq_1483a5e95e237e06 ON `users`'); |
||
| 337 | $this->addSql('CREATE UNIQUE INDEX name ON `users` (name)'); |
||
| 338 | |||
| 339 | //Migrate theme config to new format |
||
| 340 | $this->addSql('UPDATE users SET users.config_theme = REPLACE(users.config_theme ,".min.css", "") WHERE users.config_theme LIKE "%.min.css"'); |
||
| 341 | $this->addSql('UPDATE users SET users.config_theme = REPLACE(users.config_theme ,".css", "") WHERE users.config_theme LIKE "%.css"'); |
||
| 342 | } |
||
| 354 |
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