Covivo/mobicoop

View on GitHub
api/src/Migrations/Version20190617083046.php

Summary

Maintainability
A
1 hr
Test Coverage
<?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 Version20190617083046 extends AbstractMigration
{
    public function up(Schema $schema) : void
    {
        // this up() migration is auto-generated, please modify it to your needs
        $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');

        $this->addSql('ALTER TABLE community_security DROP field1name, DROP field1type, DROP field2name, DROP field2type');
    }

    public function down(Schema $schema) : void
    {
        // this down() migration is auto-generated, please modify it to your needs
        $this->abortIf($this->connection->getDatabasePlatform()->getName() !== 'mysql', 'Migration can only be executed safely on \'mysql\'.');

        $this->addSql('ALTER TABLE community_security ADD field1name VARCHAR(255) NOT NULL COLLATE utf8mb4_unicode_ci, ADD field1type SMALLINT NOT NULL, ADD field2name VARCHAR(255) NOT NULL COLLATE utf8mb4_unicode_ci, ADD field2type SMALLINT NOT NULL');
    }
}