down function was missing

This commit is contained in:
HB9HIL
2023-12-08 16:28:30 +01:00
parent 939e192d7d
commit 587443c17f

View File

@@ -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.
}
}