30 lines
797 B
PHP
Executable File
30 lines
797 B
PHP
Executable File
<?php
|
|
|
|
namespace Mautic\Migrations;
|
|
|
|
use Doctrine\DBAL\Schema\Schema;
|
|
use Doctrine\Migrations\Exception\SkipMigration;
|
|
use Mautic\CoreBundle\Doctrine\AbstractMauticMigration;
|
|
|
|
/**
|
|
* Auto-generated Migration: Please modify to your needs!
|
|
*/
|
|
class Version20190326190241 extends AbstractMauticMigration
|
|
{
|
|
/**
|
|
* @throws SkipMigration
|
|
* @throws \Doctrine\DBAL\Schema\SchemaException
|
|
*/
|
|
public function preUp(Schema $schema): void
|
|
{
|
|
if ($schema->getTable("{$this->prefix}campaign_events")->hasColumn('failed_count')) {
|
|
throw new SkipMigration('Schema includes this migration');
|
|
}
|
|
}
|
|
|
|
public function up(Schema $schema): void
|
|
{
|
|
$this->addSql("ALTER TABLE {$this->prefix}campaign_events ADD failed_count INT NOT NULL;");
|
|
}
|
|
}
|