migrations/Version20240730090338.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 Version20240730090338 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 manager_recovery (id INT AUTO_INCREMENT NOT NULL, manager_id INT NOT NULL, token VARCHAR(255) NOT NULL, expiration DATETIME NOT NULL, hash VARCHAR(255) NOT NULL, status INT NOT NULL, is_removed TINYINT(1) NOT NULL, cdate DATETIME NOT NULL, mdate DATETIME DEFAULT NULL, UNIQUE INDEX UNIQ_729EBADD1B862B8 (hash), INDEX IDX_729EBAD783E3463 (manager_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE manager_recovery ADD CONSTRAINT FK_729EBAD783E3463 FOREIGN KEY (manager_id) REFERENCES manager (id)');
  20.         $this->addSql('ALTER TABLE manager ADD description VARCHAR(255) DEFAULT NULL, ADD avatar VARCHAR(255) DEFAULT NULL, ADD num_max_taxations INT NOT NULL, CHANGE email email VARCHAR(50) NOT NULL, CHANGE surname surname VARCHAR(255) NOT NULL');
  21.         $this->addSql('CREATE UNIQUE INDEX UNIQ_FA2425B9E7927C74 ON manager (email)');
  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 manager_recovery');
  27.         $this->addSql('DROP INDEX UNIQ_FA2425B9E7927C74 ON manager');
  28.         $this->addSql('ALTER TABLE manager DROP description, DROP avatar, DROP num_max_taxations, CHANGE email email VARCHAR(255) NOT NULL, CHANGE surname surname VARCHAR(255) DEFAULT NULL');
  29.     }
  30. }