db->field_exists('wwff', 'bandxuser')) { $fields = array( 'wwff' => array( 'type' => 'INT', 'constraint' => 20, 'unsigned' => TRUE, ), ); $this->dbforge->add_column('bandxuser', $fields); $this->db->query("update bandxuser set wwff = 1"); } } public function down() { $this->dbforge->drop_column('bandxuser', 'wwff'); } }