Application\Migrations\Version20150311093354::down PHP Method

down() public method

public down ( Doctrine\DBAL\Schema\Schema $schema )
$schema Doctrine\DBAL\Schema\Schema
    public function down(Schema $schema)
    {
        // this down() migration is auto-generated, please modify it to your needs
        $calendarobjects = $schema->getTable('calendarobjects');
        $calendarobjects->removeColumn('uid');
        $schema->dropTable('schedulingobjects');
    }
Version20150311093354