Merged in dev and updated migration number

pull/2452/head
Andreas 2023-08-31 08:41:13 +02:00
rodzic a35ddb2b0a
commit 99a08d0d18
2 zmienionych plików z 1 dodań i 14 usunięć

Wyświetl plik

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

Wyświetl plik

@ -1,13 +0,0 @@
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_alter_user_options_table extends CI_Migration {
public function up() {
$this->db->query("ALTER TABLE user_options CHANGE COLUMN option_value option_value text DEFAULT NULL;");
}
public function down(){
}
}