diff --git a/migrations/list.php b/migrations/list.php index 8574ed0f..a6784ab9 100644 --- a/migrations/list.php +++ b/migrations/list.php @@ -1,5 +1,6 @@ executeQuery($sql); + } + + public function down(){ + + $sql = <<<'SQL' + Alter table Payroll drop COLUMN `deduction_group`; +SQL; + + return $this->executeQuery($sql); + } + +}