<?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 Version20221014122643 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 ajustare_stoc CHANGE cantitate_ajustata cantitate_ajustata DOUBLE PRECISION NOT NULL');
$this->addSql('ALTER TABLE categori_cheltuieli CHANGE valoare valoare DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE decont_angajat CHANGE suma suma DOUBLE PRECISION NOT NULL');
$this->addSql('ALTER TABLE furnizor CHANGE capital_social capital_social DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE note_credit CHANGE suma suma DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE produse_comenzi CHANGE cantitate cantitate DOUBLE PRECISION DEFAULT NULL, CHANGE pret_unitar pret_unitar DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE transfer_gestiuni CHANGE cantitatea cantitatea DOUBLE PRECISION NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE ajustare_stoc CHANGE cantitate_ajustata cantitate_ajustata INT NOT NULL');
$this->addSql('ALTER TABLE categori_cheltuieli CHANGE valoare valoare INT NOT NULL');
$this->addSql('ALTER TABLE decont_angajat CHANGE suma suma INT NOT NULL');
$this->addSql('ALTER TABLE furnizor CHANGE capital_social capital_social INT DEFAULT NULL');
$this->addSql('ALTER TABLE note_credit CHANGE suma suma INT DEFAULT NULL');
$this->addSql('ALTER TABLE produse_comenzi CHANGE cantitate cantitate INT DEFAULT NULL, CHANGE pret_unitar pret_unitar INT DEFAULT NULL');
$this->addSql('ALTER TABLE transfer_gestiuni CHANGE cantitatea cantitatea INT NOT NULL');
}
}