Import - Export ⚙️ implementation for payroll

This commit is contained in:
gamonoid
2017-10-08 19:31:27 +02:00
parent ddb46d8443
commit 088817172f
11 changed files with 619 additions and 35 deletions

View File

@@ -0,0 +1,23 @@
<?php
namespace Classes\Migration;
class v20171003_200301_add_deduction_group_payroll extends AbstractMigration{
public function up(){
$sql = <<<'SQL'
alter table PayrollColumns add column `deduction_group` bigint(20) NULL;
SQL;
return $this->executeQuery($sql);
}
public function down(){
$sql = <<<'SQL'
alter table PayrollColumns drop column `deduction_group`;
SQL;
return $this->executeQuery($sql);
}
}