<?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 Version20221018104905 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 angajat CHANGE cost_ora cost_ora DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE bilet_ordin CHANGE suma suma DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE bon_consum CHANGE cantitate_consumata cantitate_consumata DOUBLE PRECISION NOT NULL');
$this->addSql('ALTER TABLE factura_produs CHANGE stoc_factura stoc_factura DOUBLE PRECISION NOT NULL');
$this->addSql('ALTER TABLE gantt CHANGE total_cost total_cost DOUBLE PRECISION DEFAULT NULL, CHANGE variance variance DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE oferta CHANGE valoare valoare DOUBLE PRECISION DEFAULT NULL');
$this->addSql('ALTER TABLE produse_inventar CHANGE cant_scriptica cant_scriptica DOUBLE PRECISION DEFAULT NULL, CHANGE cant_faptica cant_faptica DOUBLE PRECISION DEFAULT NULL, CHANGE diferenta_stoc diferenta_stoc DOUBLE PRECISION DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE angajat CHANGE cost_ora cost_ora INT DEFAULT NULL');
$this->addSql('ALTER TABLE bilet_ordin CHANGE suma suma INT DEFAULT NULL');
$this->addSql('ALTER TABLE bon_consum CHANGE cantitate_consumata cantitate_consumata INT NOT NULL');
$this->addSql('ALTER TABLE factura_produs CHANGE stoc_factura stoc_factura INT NOT NULL');
$this->addSql('ALTER TABLE gantt CHANGE total_cost total_cost INT DEFAULT NULL, CHANGE variance variance INT DEFAULT NULL');
$this->addSql('ALTER TABLE oferta CHANGE valoare valoare INT DEFAULT NULL');
$this->addSql('ALTER TABLE produse_inventar CHANGE cant_scriptica cant_scriptica INT DEFAULT NULL, CHANGE cant_faptica cant_faptica INT DEFAULT NULL, CHANGE diferenta_stoc diferenta_stoc INT DEFAULT NULL');
}
}