Files
Mangarr/migrations/Version20240604185153.php
Jérémy Guillot 9595831aa3 - début refonte graphique
- début MangaDbProvider
2024-06-05 00:05:28 +02:00

40 lines
1.3 KiB
PHP

<?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 Version20240604185153 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 manga ADD image_url VARCHAR(255) DEFAULT NULL');
$this->addSql('ALTER TABLE manga ADD publication_year INT DEFAULT NULL');
$this->addSql('ALTER TABLE manga ADD description TEXT DEFAULT NULL');
$this->addSql('ALTER TABLE manga ADD genres TEXT DEFAULT NULL');
$this->addSql('COMMENT ON COLUMN manga.genres IS \'(DC2Type:array)\'');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('CREATE SCHEMA public');
$this->addSql('ALTER TABLE manga DROP image_url');
$this->addSql('ALTER TABLE manga DROP publication_year');
$this->addSql('ALTER TABLE manga DROP description');
$this->addSql('ALTER TABLE manga DROP genres');
}
}