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