<?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 Version20220701090741 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 categori_cheltuieli DROP FOREIGN KEY FK_946FAD08BF396750');
$this->addSql('ALTER TABLE categori_cheltuieli ADD centru_cost INT NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE categori_cheltuieli DROP centru_cost');
$this->addSql('ALTER TABLE categori_cheltuieli ADD CONSTRAINT FK_946FAD08BF396750 FOREIGN KEY (id) REFERENCES centre_cost (id)');
}
}