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.
28 lines
551 B
PHP
28 lines
551 B
PHP
<?php
|
|
|
|
namespace App\Database\Migrations;
|
|
|
|
use CodeIgniter\Database\Migration;
|
|
|
|
class AddDTREmpIDOnEmployee extends Migration
|
|
{
|
|
public function up()
|
|
{
|
|
$fields = [
|
|
'dtr_emp_id' => [
|
|
'type' => 'VARCHAR',
|
|
'constraint' => 25,
|
|
'null' => true,
|
|
'after' => 'company_issued_id',
|
|
],
|
|
];
|
|
|
|
$this->forge->addColumn('employee', $fields);
|
|
}
|
|
|
|
public function down()
|
|
{
|
|
$this->forge->dropColumn('employee', 'dtr_emp_id');
|
|
}
|
|
}
|