migrations/2024/10/Version20241017154334.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace Application\Migrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20241017154334 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $columns = [
  19.             ['legal_entity_contract''file_path'],
  20.             ['legal_entity_contract''legacy_file_path'],
  21.             ['legal_entity_contract_custom_template''path'],
  22.             ['legal_entity_questionnaire_benzene''file_path'],
  23.             ['legal_entity_questionnaire_benzene''upload_path'],
  24.         ];
  25.         foreach ($columns as $attempt) {
  26.             [$table$column] = $attempt;
  27.             $sql sprintf('SELECT id, `%1$s` AS value FROM `%2$s` WHERE `%1$s` LIKE ?'$column$table);
  28.             $param '/home/forge/www.siefspace.eu/releases/%';
  29.             $stmt $this->connection->executeQuery($sql, [$param]);
  30.             foreach ($stmt->iterateAssociative() as $record) {
  31.                 /** @var array{id: int, value: string} $record */
  32.                 $array explode('/'$record['value']);
  33.                 array_splice($array42);
  34.                 $update implode('/'$array);
  35.                 unset($array);
  36.                 $this->addSql("UPDATE `$table` SET `$column` = ? WHERE id = ?", [$update$record['id']]);
  37.             }
  38.         }
  39.     }
  40.     public function down(Schema $schema): void
  41.     {
  42.         // this down() migration is auto-generated, please modify it to your needs
  43.     }
  44. }