alexdaniels.me/migrations/Version20260522202515.php
2026-06-04 15:17:26 -07:00

33 lines
921 B
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 Version20260522202515 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 page ADD published BOOLEAN NOT NULL DEFAULT false');
$this->addSql('ALTER TABLE post ADD published BOOLEAN NOT NULL DEFAULT false');
}
public function down(Schema $schema): void
{
// this down() migration is auto-generated, please modify it to your needs
$this->addSql('ALTER TABLE page DROP published');
$this->addSql('ALTER TABLE post DROP published');
}
}