<?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 Version20241114164055 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 action_trace (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, prospect_id INT NOT NULL, type VARCHAR(255) NOT NULL, created_at DATETIME NOT NULL COMMENT \'(DC2Type:datetime_immutable)\', INDEX IDX_D695191DA76ED395 (user_id), INDEX IDX_D695191DD182060A (prospect_id), PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE action_trace ADD CONSTRAINT FK_D695191DA76ED395 FOREIGN KEY (user_id) REFERENCES utilisateur (id)');
$this->addSql('ALTER TABLE action_trace ADD CONSTRAINT FK_D695191DD182060A FOREIGN KEY (prospect_id) REFERENCES prospect (id)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE action_trace DROP FOREIGN KEY FK_D695191DA76ED395');
$this->addSql('ALTER TABLE action_trace DROP FOREIGN KEY FK_D695191DD182060A');
$this->addSql('DROP TABLE action_trace');
}
}