migrations/Version20240207091824.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  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 Version20240207091824 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.         $this->addSql('ALTER TABLE assurance ADD nom VARCHAR(255) NOT NULL, DROP assurance, DROP formule');
  19.         $this->addSql('ALTER TABLE catalog_order ADD pays_id INT NOT NULL, DROP pays, CHANGE catalogues catalogues LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:array)\'');
  20.         $this->addSql('ALTER TABLE catalog_order ADD CONSTRAINT FK_4C3AF221A6E44244 FOREIGN KEY (pays_id) REFERENCES pays (id)');
  21.         $this->addSql('CREATE INDEX IDX_4C3AF221A6E44244 ON catalog_order (pays_id)');
  22.         $this->addSql('ALTER TABLE infos_discover CHANGE code_traduction code_traduction VARCHAR(255) NOT NULL');
  23.         $this->addSql('ALTER TABLE infos_discover_link CHANGE code_traduction code_traduction VARCHAR(255) NOT NULL');
  24.         $this->addSql('ALTER TABLE infos_event CHANGE code_traduction code_traduction VARCHAR(255) NOT NULL');
  25.         $this->addSql('ALTER TABLE media_residence CHANGE lang_id lang_id INT NOT NULL');
  26.         $this->addSql('UPDATE page SET is_translated = 0 WHERE is_translated IS NULL');
  27.         $this->addSql('ALTER TABLE page CHANGE is_translated is_translated TINYINT(1) NOT NULL');
  28.         $this->addSql('ALTER TABLE typologie CHANGE lang_id lang_id INT DEFAULT NULL, CHANGE nom nom VARCHAR(255) DEFAULT NULL, CHANGE idiresa idiresa INT DEFAULT NULL, CHANGE cap_min cap_min INT DEFAULT NULL, CHANGE cap_max cap_max INT DEFAULT NULL, CHANGE pax_max pax_max INT DEFAULT NULL, CHANGE pax_min pax_min INT DEFAULT NULL, CHANGE res_pmr res_pmr TINYINT(1) DEFAULT NULL');
  29.     }
  30.     public function down(Schema $schema): void
  31.     {
  32.         // this down() migration is auto-generated, please modify it to your needs
  33.         $this->addSql('ALTER TABLE assurance ADD assurance VARCHAR(255) DEFAULT NULL, ADD formule VARCHAR(255) DEFAULT NULL, DROP nom');
  34.         $this->addSql('ALTER TABLE catalog_order DROP FOREIGN KEY FK_4C3AF221A6E44244');
  35.         $this->addSql('DROP INDEX IDX_4C3AF221A6E44244 ON catalog_order');
  36.         $this->addSql('ALTER TABLE catalog_order ADD pays VARCHAR(255) NOT NULL, DROP pays_id, CHANGE catalogues catalogues LONGTEXT DEFAULT NULL COMMENT \'(DC2Type:json)\'');
  37.         $this->addSql('ALTER TABLE infos_discover CHANGE code_traduction code_traduction VARCHAR(255) DEFAULT NULL');
  38.         $this->addSql('ALTER TABLE infos_discover_link CHANGE code_traduction code_traduction VARCHAR(255) DEFAULT NULL');
  39.         $this->addSql('ALTER TABLE infos_event CHANGE code_traduction code_traduction VARCHAR(255) DEFAULT NULL');
  40.         $this->addSql('ALTER TABLE media_residence CHANGE lang_id lang_id INT DEFAULT NULL');
  41.         $this->addSql('ALTER TABLE page CHANGE is_translated is_translated TINYINT(1) DEFAULT NULL');
  42.         $this->addSql('ALTER TABLE transaction ADD date_created DATETIME DEFAULT NULL');
  43.         $this->addSql('ALTER TABLE typologie CHANGE lang_id lang_id INT DEFAULT 1, CHANGE nom nom VARCHAR(255) NOT NULL, CHANGE idiresa idiresa INT NOT NULL, CHANGE cap_min cap_min INT NOT NULL, CHANGE cap_max cap_max INT NOT NULL, CHANGE pax_max pax_max INT DEFAULT 0, CHANGE pax_min pax_min INT DEFAULT 0, CHANGE res_pmr res_pmr TINYINT(1) DEFAULT 0');
  44.     }
  45. }