getTable('c_quiz_question') ->getColumn('type') ->setType(Type::getType(Type::INTEGER)); } /** * @param Schema $schema */ public function down(Schema $schema) { $schema ->getTable('c_quiz_question') ->getColumn('type') ->setType(Type::getType(Type::BOOLEAN)); } }