Merge pull request #2799 from int2001/accountqsl

Migscript to extend the default-qsl-col at users for qrz
这个提交包含在:
Peter Goodhall 2023-12-08 13:40:19 +00:00 提交者 GitHub
当前提交 05f7c486ae
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23
共有 2 个文件被更改,包括 12 次插入1 次删除

查看文件

@ -22,7 +22,7 @@ $config['migration_enabled'] = TRUE;
|
*/
$config['migration_version'] = 158;
$config['migration_version'] = 159;
/*
|--------------------------------------------------------------------------

查看文件

@ -0,0 +1,11 @@
<?php
// Create migration that makes the submode column in the logbook table an index
class Migration_extend_default_qsl extends CI_Migration {
public function up() {
$this->db->query("ALTER TABLE `users` CHANGE COLUMN `user_default_confirmation` `user_default_confirmation` VARCHAR(4) NULL DEFAULT NULL");
}
}
?>