<?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 Version20230501140541 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 lot ADD type_moteur_recherche VARCHAR(255) DEFAULT NULL');
$this->addSql('ALTER TABLE piece_jointe ADD est_image_admin TINYINT(1) DEFAULT NULL');
$this->addSql('ALTER TABLE programme ADD demande_suppression DATETIME DEFAULT NULL');
$this->addSql('ALTER TABLE prospect ADD auteur_id INT DEFAULT NULL');
$this->addSql('ALTER TABLE prospect ADD CONSTRAINT FK_C9CE8C7D60BB6FE6 FOREIGN KEY (auteur_id) REFERENCES utilisateur (id)');
$this->addSql('CREATE INDEX IDX_C9CE8C7D60BB6FE6 ON prospect (auteur_id)');
$this->addSql('ALTER TABLE utilisateur CHANGE roles roles JSON NOT NULL');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE lot DROP type_moteur_recherche');
$this->addSql('ALTER TABLE piece_jointe DROP est_image_admin');
$this->addSql('ALTER TABLE programme DROP demande_suppression');
$this->addSql('ALTER TABLE prospect DROP FOREIGN KEY FK_C9CE8C7D60BB6FE6');
$this->addSql('DROP INDEX IDX_C9CE8C7D60BB6FE6 ON prospect');
$this->addSql('ALTER TABLE prospect DROP auteur_id');
$this->addSql('ALTER TABLE utilisateur CHANGE roles roles LONGTEXT NOT NULL COLLATE `utf8mb4_bin`');
}
}