cloudlog/application/migrations/141_alter_user_options_table.php

14 lines
302 B
PHP
Raw Permalink Normal View History

2023-08-31 08:41:59 +02:00
<?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(){
}
}