Merge pull request #2556 from dg0tm/dev

[migrations] remove duplicate file
这个提交包含在:
Peter Goodhall 2023-10-09 11:21:34 +01:00 提交者 GitHub
当前提交 5a1c76c6c3
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

@ -1,22 +0,0 @@
<?php defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_add_dxcc_enddate extends CI_Migration {
public function up()
{
$fields = array(
'end_date' => array('type' => 'datetime')
);
$this->dbforge->add_column('dxcc', $fields);
}
public function down()
{
$this->dbforge->drop_column('dxcc', 'end_date');
}
}
?>