migrations/Version20220225083936.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\Migrations\AbstractMigration;
  5. use Doctrine\DBAL\Schema\Schema;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. class Version20220225083936 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->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql''Migration can only be executed safely on \'mysql\'.');
  19.         $this->addSql('ALTER TABLE infos_residence ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME NOT NULL, ADD is_translated TINYINT(1) NOT NULL');
  20.         $this->addSql('ALTER TABLE package ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME NOT NULL, CHANGE id_iresa id_iresa INT DEFAULT NULL');
  21.         $this->addSql('ALTER TABLE typologie ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME NOT NULL');
  22.         $this->addSql('ALTER TABLE infos_formule_base ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME NOT NULL, ADD is_translated TINYINT(1) NOT NULL');
  23.         $this->addSql('ALTER TABLE theme ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME NOT NULL, ADD is_translated TINYINT(1) NOT NULL');
  24.         $this->addSql('ALTER TABLE service ADD created_at DATETIME NOT NULL, ADD updated_at DATETIME NOT NULL');
  25.         $this->addSql('ALTER TABLE destination ADD is_translated TINYINT(1) NOT NULL');
  26.     }
  27.     public function down(Schema $schema): void
  28.     {
  29.         // this down() migration is auto-generated, please modify it to your needs
  30.         $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql''Migration can only be executed safely on \'mysql\'.');
  31.         $this->addSql('ALTER TABLE destination DROP is_translated');
  32.         $this->addSql('ALTER TABLE infos_formule_base DROP created_at, DROP updated_at, DROP is_translated');
  33.         $this->addSql('ALTER TABLE infos_residence DROP created_at, DROP updated_at, DROP is_translated');
  34.         $this->addSql('ALTER TABLE package DROP created_at, DROP updated_at, CHANGE id_iresa id_iresa INT NOT NULL');
  35.         $this->addSql('ALTER TABLE service DROP created_at, DROP updated_at');
  36.         $this->addSql('ALTER TABLE theme DROP created_at, DROP updated_at, DROP is_translated');
  37.         $this->addSql('ALTER TABLE typologie DROP created_at, DROP updated_at');
  38.     }
  39. }