<?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 Version20220419074038 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 notificari DROP FOREIGN KEY FK_9A244695E62D5D88');
$this->addSql('DROP INDEX IDX_9A244695E62D5D88 ON notificari');
$this->addSql('ALTER TABLE notificari ADD responsabil VARCHAR(255) DEFAULT NULL, DROP responsabil_id');
$this->addSql('ALTER TABLE prospect_notes ADD id_prospect INT DEFAULT NULL, CHANGE date date DATETIME DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE notificari ADD responsabil_id INT NOT NULL, DROP responsabil');
$this->addSql('ALTER TABLE notificari ADD CONSTRAINT FK_9A244695E62D5D88 FOREIGN KEY (responsabil_id) REFERENCES user (id)');
$this->addSql('CREATE INDEX IDX_9A244695E62D5D88 ON notificari (responsabil_id)');
$this->addSql('ALTER TABLE prospect_notes DROP id_prospect, CHANGE date date DATETIME NOT NULL');
}
}