executeQuery($sql); $sql = <<<'SQL' INSERT INTO `DataImport` (`name`, `dataType`, `details`, `columns`, `updated`, `created`) VALUES ('Payroll Data Import', 'PayrollDataImporter', '', '[]', '2016-08-14 02:51:56', '2016-08-14 02:51:56'); SQL; return $this->executeQuery($sql); } public function down(){ $sql = <<<'SQL' delete from Reports where name = 'Payroll Meta Data Export'; SQL; $this->executeQuery($sql); $sql = <<<'SQL' delete from DataImport where name = 'Attendance Data Import'; SQL; return $this->executeQuery($sql); } }