<?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 Version20221025122514 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('ALTER TABLE date_follow_up ADD prospectId INT DEFAULT NULL');
$this->addSql('ALTER TABLE date_follow_up ADD CONSTRAINT FK_44CA69285422428C FOREIGN KEY (prospectId) REFERENCES prospect (id)');
$this->addSql('CREATE INDEX IDX_44CA69285422428C ON date_follow_up (prospectId)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE date_follow_up DROP FOREIGN KEY FK_44CA69285422428C');
$this->addSql('DROP INDEX IDX_44CA69285422428C ON date_follow_up');
$this->addSql('ALTER TABLE date_follow_up DROP prospectId');
}
}