<?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 Version20220923132441 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('ALTER TABLE projet ADD image_ftp_server_enligne VARCHAR(255) DEFAULT NULL, ADD image_ftp_login_enligne VARCHAR(255) DEFAULT NULL, ADD image_ftp_mdp_enligne VARCHAR(255) DEFAULT NULL, ADD image_http_server_enligne VARCHAR(255) DEFAULT NULL, ADD web_ftp_server_enligne VARCHAR(255) DEFAULT NULL, ADD web_ftp_login_enligne VARCHAR(255) DEFAULT NULL, ADD web_ftp_mdp_enligne VARCHAR(255) DEFAULT NULL, ADD switch_en_ligne TINYINT(1) DEFAULT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE projet DROP image_ftp_server_enligne, DROP image_ftp_login_enligne, DROP image_ftp_mdp_enligne, DROP image_http_server_enligne, DROP web_ftp_server_enligne, DROP web_ftp_login_enligne, DROP web_ftp_mdp_enligne, DROP switch_en_ligne');
}
}