executeQuery($sql); } public function down() { $sql = <<<'SQL' DROP TABLE IF EXISTS `Tasks`; SQL; return $this->executeQuery($sql); } }