Merge pull request #2801 from HB9HIL/down_function

down function was missing
这个提交包含在:
Peter Goodhall 2023-12-08 15:30:14 +00:00 提交者 GitHub
当前提交 dd94f5bb86
找不到此签名对应的密钥
GPG 密钥 ID: 4AEE18F83AFDEB23

查看文件

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