You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kwpayroll/app/Database/Migrations/2024-10-17-134728_AddSalCom...

31 lines
629 B
PHP

<?php
namespace App\Database\Migrations;
use CodeIgniter\Database\Migration;
class AddSalComputeOnEmpPayInfo extends Migration
{
public function up()
{
$fields = [
'basic_sal_computation' => [
'type' => 'VARCHAR',
'constraint' => 35,
'null' => true,
'after' => 'work_days',
],
];
$this->forge->addColumn('emp_pay_info', $fields);
}
public function down()
{
$fields = [
'basic_sal_computation',
];
$this->forge->dropColumn('emp_pay_info', $fields);
}
}