12 行
334 B
PHP
12 行
334 B
PHP
|
|
<?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");
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
?>
|