<?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 Version20220223091551 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 test_alex (id INT AUTO_INCREMENT NOT NULL, denumire VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('CREATE TABLE user_document (id INT AUTO_INCREMENT NOT NULL, user_id INT DEFAULT NULL, link VARCHAR(255) DEFAULT NULL, PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
$this->addSql('ALTER TABLE inventar CHANGE id_produs id_produs INT NOT NULL, CHANGE cantitate_scriptica cantitate_scriptica INT NOT NULL, CHANGE cantitate_faptica cantitate_faptica INT NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE test_alex');
$this->addSql('DROP TABLE user_document');
$this->addSql('ALTER TABLE inventar CHANGE id_produs id_produs INT DEFAULT NULL, CHANGE cantitate_scriptica cantitate_scriptica INT DEFAULT NULL, CHANGE cantitate_faptica cantitate_faptica INT DEFAULT NULL');
}
}