Merge pull request 'corrected an error on semi-monthly' (#18) from paulcortezl5 into main
Reviewed-on: #18pull/19/head
commit
1440358af9
@ -0,0 +1,37 @@
|
||||
<?php
|
||||
|
||||
namespace App\Database\Migrations;
|
||||
|
||||
use CodeIgniter\Database\Migration;
|
||||
|
||||
class AddSalComputeOnEmpPayTrans extends Migration
|
||||
{
|
||||
public function up()
|
||||
{
|
||||
$fields = [
|
||||
'basic_sal_computation' => [
|
||||
'type' => 'VARCHAR',
|
||||
'constraint' => 35,
|
||||
'null' => true,
|
||||
'after' => 'savings_account',
|
||||
],
|
||||
'basic_semi_monthly_pay' => [
|
||||
'type' => 'DECIMAL',
|
||||
'constraint' => '12,4',
|
||||
'null' => false,
|
||||
'after' => 'basic_monthly_pay',
|
||||
],
|
||||
];
|
||||
$this->forge->addColumn('emp_pay_trans', $fields);
|
||||
}
|
||||
|
||||
public function down()
|
||||
{
|
||||
$fields = [
|
||||
'basic_sal_computation',
|
||||
'basic_semi_monthly_pay'
|
||||
];
|
||||
|
||||
$this->forge->dropColumn('emp_pay_trans', $fields);
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue