<?php
declare(strict_types=1);
namespace DoctrineMigrations;
use Doctrine\DBAL\Schema\Schema;
use Doctrine\Migrations\AbstractMigration;
/**
* Auto-generated Migration: Please modify to your needs!
*/
final class Version20241011105159 extends AbstractMigration
{
public function getDescription(): string
{
return '';
}
public function up(Schema $schema): void
{
// this up() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE TABLE plan_project_archetype_measures (
id_plan_project INT NOT NULL,
archetype VARCHAR(50) NOT NULL,
measure_id INT NOT NULL,
measure_type VARCHAR(50) NULL
)');
$this->addSql('CREATE UNIQUE INDEX unique_index_plan_project_archetype_measure_type
ON plan_project_archetype_measures (id_plan_project, archetype, measure_type);');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE plan_project_archetype_measures');
}
}