migrations/Version20220523152832.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 Version20220523152832 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 assurance ADD lang_id INT DEFAULT NULL, ADD assurance VARCHAR(255) NOT NULL, ADD formule VARCHAR(255) NOT NULL, ADD code_traduction VARCHAR(255) NOT NULL, ADD url_garanties VARCHAR(255) DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE assurance ADD CONSTRAINT FK_386829AEB213FA4 FOREIGN KEY (lang_id) REFERENCES language (id)');
  21.         $this->addSql('CREATE INDEX IDX_386829AEB213FA4 ON assurance (lang_id)');
  22.         $this->addSql('UPDATE `compte` SET `roles` = \'a:1:{i:0;s:13:\"ROLE_CUSTOMER\";}\'');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql''Migration can only be executed safely on \'mysql\'.');
  28.         $this->addSql('ALTER TABLE assurance DROP FOREIGN KEY FK_386829AEB213FA4');
  29.         $this->addSql('DROP INDEX IDX_386829AEB213FA4 ON assurance');
  30.         $this->addSql('ALTER TABLE assurance DROP lang_id, DROP code_traduction, DROP assurance, DROP formule, DROP url_garanties');
  31.         $this->addSql('UPDATE `compte` SET `roles` = \'a:1:{i:0;s:9:\"ROLE_USER\";}\'');
  32.     }
  33. }