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.
42 lines
914 B
PHTML
42 lines
914 B
PHTML
2 months ago
|
<?php
|
||
|
|
||
|
namespace App\Database\Migrations;
|
||
|
|
||
|
use CodeIgniter\Database\Forge;
|
||
|
use CodeIgniter\Database\Migration;
|
||
|
|
||
|
class ExtendUserAddEmpSysId extends Migration
|
||
|
{
|
||
|
private array $tables;
|
||
|
|
||
|
public function __construct(?Forge $forge = null)
|
||
|
{
|
||
|
parent::__construct($forge);
|
||
|
|
||
|
/** @var \Config\Auth $authConfig */
|
||
|
$authConfig = config('Auth');
|
||
|
$this->tables = $authConfig->tables;
|
||
|
}
|
||
|
|
||
|
public function up()
|
||
|
{
|
||
|
$fields = [
|
||
|
'sys_emp_id' => [
|
||
|
'type' => 'INT',
|
||
|
'constraint' => 11,
|
||
|
'unsigned' => true,
|
||
|
'after' => 'company_id',
|
||
|
],
|
||
|
];
|
||
|
$this->forge->addColumn($this->tables['users'], $fields);
|
||
|
}
|
||
|
|
||
|
public function down()
|
||
|
{
|
||
|
$fields = [
|
||
|
'sys_emp_id',
|
||
|
];
|
||
|
$this->forge->dropColumn($this->tables['users'], $fields);
|
||
|
}
|
||
|
}
|