migrations/Version20240305080825.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 Version20240305080825 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 projects_users (project_id INT NOT NULL, user_id INT NOT NULL, INDEX IDX_8102F1D7166D1F9C (project_id), INDEX IDX_8102F1D7A76ED395 (user_id), PRIMARY KEY(project_id, user_id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
  19.         $this->addSql('ALTER TABLE projects_users ADD CONSTRAINT FK_8102F1D7166D1F9C FOREIGN KEY (project_id) REFERENCES project (id)');
  20.         $this->addSql('ALTER TABLE projects_users ADD CONSTRAINT FK_8102F1D7A76ED395 FOREIGN KEY (user_id) REFERENCES user (id)');
  21.         $this->addSql('ALTER TABLE project ADD priority VARCHAR(255) NOT NULL');
  22.         $this->addSql('ALTER TABLE scenario_project CHANGE max_scenario_duration max_scenario_duration NUMERIC(10, 2) DEFAULT \'0\' NOT NULL');
  23.     }
  24.     public function down(Schema $schema): void
  25.     {
  26.         // this down() migration is auto-generated, please modify it to your needs
  27.         $this->addSql('DROP TABLE projects_users');
  28.         $this->addSql('ALTER TABLE project DROP priority');
  29.         $this->addSql('ALTER TABLE scenario_project CHANGE max_scenario_duration max_scenario_duration NUMERIC(10, 2) DEFAULT \'0.00\' NOT NULL');
  30.     }
  31. }