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.
31 lines
629 B
PHP
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);
|
|
}
|
|
}
|