migrations/Version20241030143839.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 Version20241030143839 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 company ADD hash VARCHAR(255) NOT NULL, ADD status INT NOT NULL, ADD is_removed TINYINT(1) NOT NULL, ADD cdate DATETIME NOT NULL, ADD mdate DATETIME DEFAULT NULL');
  19.         $this->addSql('CREATE UNIQUE INDEX UNIQ_4FBF094FD1B862B8 ON company (hash)');
  20.         $this->addSql('ALTER TABLE company_plans ADD hash VARCHAR(255) NOT NULL, ADD status INT NOT NULL, ADD is_removed TINYINT(1) NOT NULL, ADD cdate DATETIME NOT NULL, ADD mdate DATETIME DEFAULT NULL');
  21.         $this->addSql('CREATE UNIQUE INDEX UNIQ_72963AB4D1B862B8 ON company_plans (hash)');
  22.         $this->addSql('ALTER TABLE customer_service_available ADD manager_id INT DEFAULT NULL');
  23.         $this->addSql('ALTER TABLE customer_service_available ADD CONSTRAINT FK_E90F63D2783E3463 FOREIGN KEY (manager_id) REFERENCES manager (id)');
  24.         $this->addSql('CREATE INDEX IDX_E90F63D2783E3463 ON customer_service_available (manager_id)');
  25.         $this->addSql('ALTER TABLE customer_subscription ADD status INT NOT NULL, ADD is_removed TINYINT(1) NOT NULL, ADD mdate DATETIME DEFAULT NULL');
  26.         $this->addSql('ALTER TABLE customer_taxation_available ADD manager_id INT DEFAULT NULL');
  27.         $this->addSql('ALTER TABLE customer_taxation_available ADD CONSTRAINT FK_4C621076783E3463 FOREIGN KEY (manager_id) REFERENCES manager (id)');
  28.         $this->addSql('CREATE INDEX IDX_4C621076783E3463 ON customer_taxation_available (manager_id)');
  29.         $this->addSql('DROP INDEX UNIQ_FA2425B9E7927C74 ON manager');
  30.         $this->addSql('ALTER TABLE manager ADD hash VARCHAR(255) NOT NULL, ADD is_removed TINYINT(1) NOT NULL, ADD cdate DATETIME NOT NULL, ADD mdate DATETIME DEFAULT NULL, CHANGE email email VARCHAR(255) NOT NULL, CHANGE surname surname VARCHAR(255) DEFAULT NULL, CHANGE num_max_taxations status INT NOT NULL');
  31.         $this->addSql('CREATE UNIQUE INDEX UNIQ_FA2425B9D1B862B8 ON manager (hash)');
  32.         $this->addSql('ALTER TABLE manager_plans ADD hash VARCHAR(255) NOT NULL, ADD status INT NOT NULL, ADD is_removed TINYINT(1) NOT NULL, ADD cdate DATETIME NOT NULL, ADD mdate DATETIME DEFAULT NULL, CHANGE units_available designated_units INT NOT NULL');
  33.         $this->addSql('CREATE UNIQUE INDEX UNIQ_1CB858EBD1B862B8 ON manager_plans (hash)');
  34.     }
  35.     public function down(Schema $schema): void
  36.     {
  37.         // this down() migration is auto-generated, please modify it to your needs
  38.         $this->addSql('DROP INDEX UNIQ_4FBF094FD1B862B8 ON company');
  39.         $this->addSql('ALTER TABLE company DROP hash, DROP status, DROP is_removed, DROP cdate, DROP mdate');
  40.         $this->addSql('DROP INDEX UNIQ_72963AB4D1B862B8 ON company_plans');
  41.         $this->addSql('ALTER TABLE company_plans DROP hash, DROP status, DROP is_removed, DROP cdate, DROP mdate');
  42.         $this->addSql('ALTER TABLE customer_service_available DROP FOREIGN KEY FK_E90F63D2783E3463');
  43.         $this->addSql('DROP INDEX IDX_E90F63D2783E3463 ON customer_service_available');
  44.         $this->addSql('ALTER TABLE customer_service_available DROP manager_id');
  45.         $this->addSql('ALTER TABLE customer_subscription DROP status, DROP is_removed, DROP mdate');
  46.         $this->addSql('ALTER TABLE customer_taxation_available DROP FOREIGN KEY FK_4C621076783E3463');
  47.         $this->addSql('DROP INDEX IDX_4C621076783E3463 ON customer_taxation_available');
  48.         $this->addSql('ALTER TABLE customer_taxation_available DROP manager_id');
  49.         $this->addSql('DROP INDEX UNIQ_FA2425B9D1B862B8 ON manager');
  50.         $this->addSql('ALTER TABLE manager DROP hash, DROP is_removed, DROP cdate, DROP mdate, CHANGE email email VARCHAR(50) NOT NULL, CHANGE surname surname VARCHAR(255) NOT NULL, CHANGE status num_max_taxations INT NOT NULL');
  51.         $this->addSql('CREATE UNIQUE INDEX UNIQ_FA2425B9E7927C74 ON manager (email)');
  52.         $this->addSql('DROP INDEX UNIQ_1CB858EBD1B862B8 ON manager_plans');
  53.         $this->addSql('ALTER TABLE manager_plans ADD units_available INT NOT NULL, DROP designated_units, DROP hash, DROP status, DROP is_removed, DROP cdate, DROP mdate');
  54.     }
  55. }