<?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 Version20240217121233 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 constructions (id INT AUTO_INCREMENT NOT NULL, name VARCHAR(255) NOT NULL, initial_data VARCHAR(255) NOT NULL, description VARCHAR(255) NOT NULL, materials_code VARCHAR(255) NOT NULL, thickness VARCHAR(255) NOT NULL, density VARCHAR(255) NOT NULL, critical_frequency VARCHAR(255) NOT NULL, r_w VARCHAR(255) NOT NULL, c VARCHAR(255) NOT NULL, c_r VARCHAR(255) NOT NULL, frequency VARCHAR(255) NOT NULL, total_thickness VARCHAR(255) NOT NULL, total_mass VARCHAR(255) NOT NULL, max_height VARCHAR(255) NOT NULL, thermal_conductivity VARCHAR(255) NOT NULL, fire_resistance VARCHAR(255) NOT NULL, 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 constructions');
}
}