migrations/Version20221014122643.php line 1

Open in your IDE?
  1. <?php
  2. declare(strict_types=1);
  3. namespace DoctrineMigrations;
  4. use Doctrine\DBAL\Schema\Schema;
  5. use Doctrine\Migrations\AbstractMigration;
  6. /**
  7.  * Auto-generated Migration: Please modify to your needs!
  8.  */
  9. final class Version20221014122643 extends AbstractMigration
  10. {
  11.     public function getDescription(): string
  12.     {
  13.         return '';
  14.     }
  15.     public function up(Schema $schema): void
  16.     {
  17.         // this up() migration is auto-generated, please modify it to your needs
  18.         $this->addSql('ALTER TABLE ajustare_stoc CHANGE cantitate_ajustata cantitate_ajustata DOUBLE PRECISION NOT NULL');
  19.         $this->addSql('ALTER TABLE categori_cheltuieli CHANGE valoare valoare DOUBLE PRECISION DEFAULT NULL');
  20.         $this->addSql('ALTER TABLE decont_angajat CHANGE suma suma DOUBLE PRECISION NOT NULL');
  21.         $this->addSql('ALTER TABLE furnizor CHANGE capital_social capital_social DOUBLE PRECISION DEFAULT NULL');
  22.         $this->addSql('ALTER TABLE note_credit CHANGE suma suma DOUBLE PRECISION DEFAULT NULL');
  23.         $this->addSql('ALTER TABLE produse_comenzi CHANGE cantitate cantitate DOUBLE PRECISION DEFAULT NULL, CHANGE pret_unitar pret_unitar DOUBLE PRECISION DEFAULT NULL');
  24.         $this->addSql('ALTER TABLE transfer_gestiuni CHANGE cantitatea cantitatea DOUBLE PRECISION NOT NULL');
  25.     }
  26.     public function down(Schema $schema): void
  27.     {
  28.         // this down() migration is auto-generated, please modify it to your needs
  29.         $this->addSql('ALTER TABLE ajustare_stoc CHANGE cantitate_ajustata cantitate_ajustata INT NOT NULL');
  30.         $this->addSql('ALTER TABLE categori_cheltuieli CHANGE valoare valoare INT NOT NULL');
  31.         $this->addSql('ALTER TABLE decont_angajat CHANGE suma suma INT NOT NULL');
  32.         $this->addSql('ALTER TABLE furnizor CHANGE capital_social capital_social INT DEFAULT NULL');
  33.         $this->addSql('ALTER TABLE note_credit CHANGE suma suma INT DEFAULT NULL');
  34.         $this->addSql('ALTER TABLE produse_comenzi CHANGE cantitate cantitate INT DEFAULT NULL, CHANGE pret_unitar pret_unitar INT DEFAULT NULL');
  35.         $this->addSql('ALTER TABLE transfer_gestiuni CHANGE cantitatea cantitatea INT NOT NULL');
  36.     }
  37. }