<?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 Version20220419090257 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 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 oferta_produs ADD id_produs INT DEFAULT NULL, DROP idProdus');
}
public function down(Schema $schema): void
{
// this down() 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 oferta_produs ADD idProdus INT NOT NULL, DROP id_produs');
}
}