migrations/Version20211124093222.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 Version20211124093222 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 lang ADD code VARCHAR(5) NOT NULL');
  19.         $this->addSql('ALTER TABLE resource ADD phone_valid TINYINT(1) DEFAULT NULL, ADD phone_lookup TINYINT(1) DEFAULT \'0\' NOT NULL, ADD phone_carrier VARCHAR(255) DEFAULT NULL, ADD phone_type VARCHAR(10) DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE scenario_project ADD click_to_call TINYINT(1) DEFAULT \'0\' NOT NULL, ADD calling_number VARCHAR(255) DEFAULT NULL');
  21.         $this->addSql('UPDATE lang SET code = "fr" WHERE id = 1');
  22.         $this->addSql('UPDATE lang SET code = "en" WHERE id = 2');
  23.         $this->addSql('UPDATE lang SET code = "no" WHERE id = 3');
  24.         $this->addSql('UPDATE lang SET code = "sv" WHERE id = 4');
  25.         $this->addSql('UPDATE lang SET code = "nl" WHERE id = 5');
  26.         $this->addSql('UPDATE lang SET code = "pl" WHERE id = 6');
  27.         $this->addSql('UPDATE lang SET code = "ar" WHERE id = 7');
  28.         $this->addSql('UPDATE lang SET code = "af" WHERE id = 8');
  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 lang DROP code');
  34.         $this->addSql('ALTER TABLE resource DROP phone_valid, DROP phone_lookup, DROP phone_carrier, DROP phone_type');
  35.         $this->addSql('ALTER TABLE scenario_project DROP click_to_call, DROP calling_number');
  36.     }
  37. }