src/Migrations/Version20210420073827.php line 1

  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 Version20210420073827 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('CREATE TABLE message_sms (id INT AUTO_INCREMENT NOT NULL, phone VARCHAR(255) NOT NULL, text VARCHAR(255) DEFAULT NULL, sms_id INT NOT NULL, status VARCHAR(255) NOT NULL, created_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, updated_at DATETIME DEFAULT CURRENT_TIMESTAMP NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE olymp_online_participant ADD canceled_by_id INT DEFAULT NULL, ADD canceled TINYINT(1) DEFAULT \'0\' NOT NULL, ADD canceled_at DATETIME DEFAULT NULL, DROP active');
  20.         $this->addSql('ALTER TABLE olymp_online_participant ADD CONSTRAINT FK_EC8114171418957 FOREIGN KEY (canceled_by_id) REFERENCES users (id)');
  21.         $this->addSql('CREATE INDEX IDX_EC8114171418957 ON olymp_online_participant (canceled_by_id)');
  22.     }
  23.     public function down(Schema $schema): void
  24.     {
  25.         // this down() migration is auto-generated, please modify it to your needs
  26.         $this->addSql('DROP TABLE message_sms');
  27.         $this->addSql('ALTER TABLE olymp_online_participant DROP FOREIGN KEY FK_EC8114171418957');
  28.         $this->addSql('DROP INDEX IDX_EC8114171418957 ON olymp_online_participant');
  29.         $this->addSql('ALTER TABLE olymp_online_participant ADD active TINYINT(1) DEFAULT \'1\' NOT NULL, DROP canceled_by_id, DROP canceled, DROP canceled_at');
  30.     }
  31. }