Migscript to extend the default-qsl-col at users for qrz

pull/2799/head
int2001 2023-12-08 13:34:47 +00:00
rodzic e8df30b9ef
commit 54e6ea388e
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: DFB1C13CD2DB037B
2 zmienionych plików z 12 dodań i 1 usunięć

Wyświetl plik

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

Wyświetl plik

@ -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");
}
}
?>