<?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 Version20220606065635 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 inventar CHANGE id_gestiune idGestiune INT NOT NULL');
$this->addSql('ALTER TABLE inventar ADD CONSTRAINT FK_B74A4FEA6677C77E FOREIGN KEY (idGestiune) REFERENCES gestiune (id)');
$this->addSql('CREATE INDEX IDX_B74A4FEA6677C77E ON inventar (idGestiune)');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE inventar DROP FOREIGN KEY FK_B74A4FEA6677C77E');
$this->addSql('DROP INDEX IDX_B74A4FEA6677C77E ON inventar');
$this->addSql('ALTER TABLE inventar CHANGE idgestiune id_gestiune INT NOT NULL');
}
}