<?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 Version20220304130536 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('CREATE TABLE angajat (id INT AUTO_INCREMENT NOT NULL, nume VARCHAR(255) NOT NULL, prenume VARCHAR(255) NOT NULL, email VARCHAR(255) DEFAULT NULL, telefon INT DEFAULT NULL, functie VARCHAR(255) NOT NULL, salariu_net INT DEFAULT NULL, salariu_brut INT DEFAULT NULL, numar_contract INT DEFAULT NULL, data_contractului DATE DEFAULT NULL, notes LONGTEXT DEFAULT NULL, status VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE organigrama (id INT AUTO_INCREMENT NOT NULL, functie VARCHAR(255) NOT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE prospect (id INT AUTO_INCREMENT NOT NULL, nume VARCHAR(255) NOT NULL, prenume VARCHAR(255) NOT NULL, functia VARCHAR(255) DEFAULT NULL, avatar VARCHAR(255) DEFAULT NULL, notes LONGTEXT DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('DROP TABLE calendar');
$this->addSql('ALTER TABLE factura_produs ADD pret INT DEFAULT NULL, ADD valoare INT DEFAULT NULL, ADD valoare_tva INT DEFAULT NULL');
$this->addSql('ALTER TABLE user_document DROP full_file_name');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE TABLE calendar (id INT AUTO_INCREMENT NOT NULL, begin_at DATETIME DEFAULT NULL, end_at DATETIME DEFAULT NULL, title VARCHAR(255) CHARACTER SET utf8mb4 DEFAULT NULL COLLATE `utf8mb4_unicode_ci`, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8 COLLATE `utf8_unicode_ci` ENGINE = InnoDB COMMENT = \'\' ');
$this->addSql('DROP TABLE angajat');
$this->addSql('DROP TABLE organigrama');
$this->addSql('DROP TABLE prospect');
$this->addSql('ALTER TABLE factura_produs DROP pret, DROP valoare, DROP valoare_tva');
$this->addSql('ALTER TABLE user_document ADD full_file_name VARCHAR(255) CHARACTER SET utf8mb4 NOT NULL COLLATE `utf8mb4_unicode_ci`');
}
}