<?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 Version20220104104818 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 critere_diagnostic (id INT AUTO_INCREMENT NOT NULL, type_diagnostic VARCHAR(255) NOT NULL, month_validity_period INT DEFAULT NULL, a_joindre_au_bail TINYINT(1) NOT NULL, nature_module LONGTEXT NOT NULL COMMENT \'(DC2Type:array)\', nature_ensemble LONGTEXT NOT NULL COMMENT \'(DC2Type:array)\', date_exigibilite_module DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', periode_exigibilite_module INT DEFAULT NULL, date_exigibilite_ensemble DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', periode_exigibilite_ensemble INT DEFAULT NULL, check_presence_gaz TINYINT(1) NOT NULL, collectif TINYINT(1) NOT NULL, check_chauffage_collectif TINYINT(1) NOT NULL, created_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', updated_at DATETIME DEFAULT NULL COMMENT \'(DC2Type:datetime_immutable)\', PRIMARY KEY(id)) DEFAULT CHARACTER SET utf8mb4 COLLATE `utf8mb4_unicode_ci` ENGINE = InnoDB');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('DROP TABLE critere_diagnostic');
}
}