40 lines
1.3 KiB
PHP
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');
|
|
}
|
|
}
|