Application\Migrations\Version20160410190541::down PHP Method

down() public method

public down ( Doctrine\DBAL\Schema\Schema $schema )
$schema Doctrine\DBAL\Schema\Schema
    public function down(Schema $schema)
    {
        $this->abortIf($this->connection->getDatabasePlatform()->getName() != 'sqlite', 'This down migration can\'t be executed on SQLite databases, because SQLite don\'t support DROP COLUMN.');
        $this->addSql('ALTER TABLE "' . $this->getTable('entry') . '" DROP uuid');
        $this->addSql("DELETE FROM \"" . $this->getTable('craue_config_setting') . "\" WHERE name = 'share_public'");
    }