skipIf($this->legacyCheck($schema, 'Framadate\Migration\AddColumn_collect_mail_In_poll'), 'Migration has been executed in an earlier database migration system'); $vote = $schema->getTable(Utils::table('vote')); $vote->addColumn('mail', 'string', ['default' => null, 'notnull' => false]); } /** * @param Schema $schema * @throws \Doctrine\DBAL\Schema\SchemaException */ public function down(Schema $schema) { $vote = $schema->getTable(Utils::table('vote')); $vote->dropColumn('mail'); } }