<?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 Version20220427115729 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 facturare CHANGE id_prospect id_prospect INT NOT NULL');
$this->addSql('ALTER TABLE facturare ADD CONSTRAINT FK_661C7D16991560E8 FOREIGN KEY (id_prospect) REFERENCES prospect (id)');
$this->addSql('CREATE INDEX IDX_661C7D16991560E8 ON facturare (id_prospect)');
$this->addSql('ALTER TABLE prospect ADD email VARCHAR(255) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE facturare DROP FOREIGN KEY FK_661C7D16991560E8');
$this->addSql('DROP INDEX IDX_661C7D16991560E8 ON facturare');
$this->addSql('ALTER TABLE facturare CHANGE id_prospect id_prospect INT DEFAULT NULL');
$this->addSql('ALTER TABLE prospect DROP email');
}
}