Files
CloudOps/docker-compose/mautic-setup/mautic-backup-files/docroot/app/migrations/Version20210330075323.php

34 lines
1.0 KiB
PHP
Executable File

<?php
declare(strict_types=1);
namespace Mautic\Migrations;
use Doctrine\DBAL\Schema\Schema;
use Mautic\CoreBundle\Doctrine\PreUpAssertionMigration;
use Mautic\PageBundle\Entity\Page;
final class Version20210330075323 extends PreUpAssertionMigration
{
protected function preUpAssertions(): void
{
$tableName = $this->getPrefixedTableName(Page::TABLE_NAME);
$this->skipAssertion(
fn (Schema $schema) => $schema->getTable($tableName)->hasColumn('public_preview'),
sprintf('Column %s already exists in table %s', 'public_preview', $tableName)
);
}
public function up(Schema $schema): void
{
$tableName = $this->getPrefixedTableName(Page::TABLE_NAME);
$this->addSql("ALTER TABLE {$tableName} ADD public_preview TINYINT(1) DEFAULT 1 NOT NULL;");
}
public function down(Schema $schema): void
{
$tableName = $this->getPrefixedTableName(Page::TABLE_NAME);
$this->addSql("ALTER TABLE {$tableName} DROP public_preview;");
}
}