Website : rimsha.abasa.com
backdoor
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
var
/
www
/
mautic
/
app
/
migrations
/
Filename :
Version20190326190241.php
back
Copy
<?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;"); } }