<?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 Version20221018095134 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 categorie');
$this->addSql('ALTER TABLE categori_cheltuieli ADD CONSTRAINT FK_946FAD08BF396750 FOREIGN KEY (id) REFERENCES categoriicheltuieli (id)');
$this->addSql('ALTER TABLE notificari ADD switch_app TINYINT(1) DEFAULT NULL, ADD switch_sms TINYINT(1) DEFAULT NULL, ADD switch_emails TINYINT(1) DEFAULT 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 FOREIGN KEY FK_946FAD08BF396750');
$this->addSql('ALTER TABLE categori_cheltuieli ADD categorie VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`');
$this->addSql('ALTER TABLE notificari DROP switch_app, DROP switch_sms, DROP switch_emails');
}
}